Custom Dashboard
Custom Dashboard is an easy way to build dashboard layout for your app , but still yet very customizable . mobile , tablet and desktop view are supported. responsive design is also supported.
Features
- Customizable Sidebar
- Customizable Dashboard
- Responsive Design
- Toggle Sidebar action
- Screen Switcher
Getting Started
To use this package, add the following to yours pubspec.yaml
file:
dependencies:
customdashboard:
Then, import it into your Dart code:
import 'package:customdashboard/customdashboard.dart';
Screenshots
Here are some screenshots of the dashboard in action:
Demo
Check out this GIF to see the dashboard in action:
Usage
Provide a brief example of how to use the package in a Flutter app.
// Example code here
class Dashboard extends StatelessWidget {
const Dashboard({super.key});
@override
Widget build(BuildContext context) {
return Customdashboard(
appBar: AppBar(
leading: IconButton(
icon: const Icon(Icons.menu),
onPressed: () {
Customdashboard.toggleSidebar(
context,
);
}),
),
sideBar: SideBar(),
body: Container(),
);
}
}
Contributing
If you would like to contribute to this package, please follow these steps:
- Fork the repository.
- Create a new branch for your feature or bug fix.
- Commit your changes.
- Push your branch and create a pull request.
License
This project is licensed under the MIT License - see the LICENSE file for details.