A beautiful, clean and simple bottom navigation bar with smooth animation on click. This package is high customizable, read more bellow.
You can see the source code of this lib inside the /lib folder.
- Change icon color
- Change indicator color
- Support for up to five items
Add the plugin:
dependencies:
...
titled_navigation_bar: ^0.0.1
import 'package:titled_navigation_bar/titled_navigation_bar.dart';
``
### Adding the widget
````Dart
bottomNavigationBar: TitledBottomNavigationBar(
items: [
TitledNavigationBarItem(title: 'Home', icon: Icons.home),
TitledNavigationBarItem(title: 'Search', icon: Icons.search),
TitledNavigationBarItem(title: 'Bag', icon: Icons.card_travel),
TitledNavigationBarItem(title: 'Orders', icon: Icons.shopping_cart),
TitledNavigationBarItem(title: 'Profile', icon: Icons.person_outline),
],
)
```