bottom_navy_bar 1.1.1 copy "bottom_navy_bar: ^1.1.1" to clipboard
bottom_navy_bar: ^1.1.1 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: ^0.1.0

Basic Usage #

Adding the widget

bottomNavigationBar: BottomNavyBar(
        onItemSelected: (index){
          setState(() {
            _currentIndex = index;
          });
        },
        items: [
          BottomNavyBarItem(icon: Icon(Icons.apps), title: Text('Home')),
          BottomNavyBarItem(icon: Icon(Icons.people), title: Text('Users')),
          BottomNavyBarItem(icon: Icon(Icons.message), title: Text('Messages')),
          BottomNavyBarItem(icon: Icon(Icons.settings), title: Text('Settings')),
        ],
)

Customization (Optional) #

iconSize - the item icon's size
activeColor - the active item's background color
inactiveColor - the inactive item's icon color
backgroundColor - the navigation bar's background color

1245
likes
0
pub points
97%
popularity

Publisher

verified publisherpedromassango.dev

A beatufull and animated bottom navigation. Fully customisable.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on bottom_navy_bar