Skip to content

akashom53/awesome_bottom_navigation_package

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

11 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Awesome Bottom Navigation

Custom bottom navigation bar using flutter. UI inspiration from Dribble.

Preview

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,
),

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages