bottom_navy_bar 2.2.0 copy "bottom_navy_bar: ^2.2.0" to clipboard
bottom_navy_bar: ^2.2.0 copied to clipboard

outdated

A beatufull and animated bottom navigation. Fully customisable.

BottomNavyBar #

A beautiful and animated bottom navigation. The navigation bar use your current theme, but you are free to customize it.

Preview #

FanBottomNavyBar Gif

Getting Started #

Add the plugin:

dependencies:
  ...
  bottom_navy_bar: ^2.0.0

Basic Usage #

Adding the widget

bottomNavigationBar: BottomNavyBar(
   onItemSelected: (index) => setState(() {
       _index = index;
       _controller.animateTo(_index);
   }),
   items: [
     BottomNavyBarItem(
       icon: Icon(Icons.apps),
       title: Text('Home'),
       activeColor: Colors.red,
     ),
     BottomNavyBarItem(
         icon: Icon(Icons.people),
         title: Text('Users'),
         activeColor: Colors.purpleAccent
     ),
     BottomNavyBarItem(
         icon: Icon(Icons.message),
         title: Text('Messages'),
         activeColor: Colors.pink
     ),
     BottomNavyBarItem(
         icon: Icon(Icons.settings),
         title: Text('Settings'),
         activeColor: Colors.blue
     ),
   ],
)

Customization (Optional) #

BottomNavyBar #

iconSize - the item icon's size
items - navigation items, required more than one item
onItemSelected - required to listen when a item is tapped it provide the selected item's index
backgroundColor - the navigation bar's background color

BottomNavyBarItem #

activeColor - the active item's background and text color
inactiveColor - the inactive item's icon color

1243
likes
30
pub points
97%
popularity

Publisher

verified publisherpedromassango.dev

A beatufull and animated bottom navigation. Fully customisable.

Repository (GitHub)
View/report issues
Contributing

License

Apache-2.0 (LICENSE)

Dependencies

flutter

More

Packages that depend on bottom_navy_bar