deluxe_bottom_bar 1.0.3
deluxe_bottom_bar: ^1.0.3 copied to clipboard
Deluxe Bottom Bar is a Flutter package that provides a customizable bottom navigation bar for your Flutter applications.
Deluxe Bottom Bar #
Deluxe Bottom Bar is a Flutter package that provides a customizable bottom navigation bar for your Flutter applications.
Features #
- Customizable icons and labels
- Easy to integrate
[Demo GIF]
Getting Started #
To use this package, add deluxe_bottom_bar as a dependency in your pubspec.yaml file.
dependencies:
deluxe_bottom_bar: any
Usage #
import 'package:flutter/material.dart';
import 'package:deluxe_bottom_bar/deluxe_bottom_bar.dart';
void main() {
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
bottomNavigationBar: DeluxeBottomBar(
items: const [
DeluxeBottomBarItem(
icon: Icons.home,
tooltip: 'Home',
),
DeluxeBottomBarItem(
icon: Icons.search,
tooltip: 'Search',
),
DeluxeBottomBarItem(
icon: Icons.notifications,
tooltip: 'Notifications',
),
DeluxeBottomBarItem(
icon: Icons.settings,
tooltip: 'Settings',
),
],
),
body: Center(child: Text('Hello, world!')),
),
);
}
}
Example #
you can find the example in the Example folder.
Contributing #
Contributions are welcome! If you'd like to contribute, please fork the repository and submit a pull request.
License #
This project is licensed under the MIT License - see the LICENSE file for details.