titled_navigation_bar 1.0.0 copy "titled_navigation_bar: ^1.0.0" to clipboard
titled_navigation_bar: ^1.0.0 copied to clipboard

outdated

A beautiful, clean and simple bottom navigation bar with smooth animation on click. This package is high customizable, read more bellow.

Titled Bottom Navigation Bar #

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.

Show some ❤️ and star the repo to support this project #

Preview #

Example Gif

Info #

  • Custom icon color
  • Custom indicator color
  • Support from two to five items

Getting Started #

Add the plugin:

dependencies:
  ...
  titled_navigation_bar: ^1.0.0

Basic Usage #

Import this class #

import 'package:titled_navigation_bar/titled_navigation_bar.dart';
``

### Adding the widget

````Dart
bottomNavigationBar: TitledBottomNavigationBar(
  onTap: (index){
    print("Selected Index: $index");
  },
  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),
  ]
)
```
141
likes
40
pub points
89%
popularity

Publisher

verified publisherpedromassango.dev

A beautiful, clean and simple bottom navigation bar with smooth animation on click. This package is high customizable, read more bellow.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on titled_navigation_bar