customdashboard 0.0.3
customdashboard: ^0.0.3 copied to clipboard
Custom Dashboard for Flutter Template
Custom Dashboard for Flutter Template #
Features #
- Customizable Sidebar
- Customizable Dashboard
- Customizable Controller
Getting Started #
To use this package, add the following to your 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:
[desktop] [mobile]
Demo #
Check out this GIF to see the dashboard in action:
[mobile] [desktop]
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.