water_drop_nav_bar 0.0.2 copy "water_drop_nav_bar: ^0.0.2" to clipboard
water_drop_nav_bar: ^0.0.2 copied to clipboard

Bottom navigation bar. It has unique water drop effect. Indicates with filled icon.

Water Drop Nav Bar

Water Drop Nav Bar #

Design Credit #

Animated Tabbar by Cuberto

How to use? #

 return Scaffold(
     
      body: PageView(
      physics: NeverScrollableScrollPhysics(),       
      controller: pageController,
...
      ),
      bottomNavigationBar: WaterDropNavBar(
        backgroundColor: Colors.white,
        onButtonPressed: (index) {
          setState(() {
            selectedIndex = index;
          });
          pageController.animateToPage(selectedIndex,
              duration: const Duration(milliseconds: 400),
              curve: Curves.easeOutQuad);
        },
        selectedIndex: selectedIndex,
        barItems: [
          BarItem(
            filledIcon: Icons.bookmark_rounded,
            outlinedIcon: Icons.bookmark_border_rounded,
          ),
          BarItem(
              filledIcon: Icons.favorite_rounded,
              outlinedIcon: Icons.favorite_border_rounded),
          BarItem(
            filledIcon: Icons.email_rounded,
            outlinedIcon: Icons.email_outlined,
          ),
          BarItem(
            filledIcon: Icons.folder_rounded,
            outlinedIcon: Icons.folder_outlined,
          ),
        ],
      ),
    );

Feel free to report issue. Please consider giving me star and check my other repositories. This will motivate me to keep working.

Follow me on social media #

alt text alt text

360
likes
150
points
756
downloads

Publisher

verified publisherwaterydesert.com

Weekly Downloads

Bottom navigation bar. It has unique water drop effect. Indicates with filled icon.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on water_drop_nav_bar