awesome_bottom_navigation 0.0.4
awesome_bottom_navigation: ^0.0.4 copied to clipboard
A beautiful animated bottom navigation bar built using flutter. The package uses mathematics to draw curves which results in fast and lightweight animations.
Awesome Bottom Navigation #
Custom bottom navigation bar using flutter. UI inspiration from Dribble.
Basic Usage #
bottomNavigationBar: AwesomeBottomNav(
icons: [
Icons.home_outlined,
Icons.shopping_cart_outlined,
Icons.category_outlined,
Icons.account_circle_outlined,
],
highlightedIcons: [
Icons.home,
Icons.shopping_cart,
Icons.category,
Icons.account_circle,
],
onTapped: (int value) {
setState(() {
selectedIndex = value;
});
},
bodyBgColor: _bgColor,
highlightColor: Color(0xFFFF9944),
navFgColor: Colors.grey.withOpacity(0.5),
navBgColor: Colors.white,
),