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

outdated

Bottom navigation bar with water drop effect.

Water Drop Nav Bar

Water Drop Nav Bar #

Demo Screen Recording #

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

Follow me on social media #

alt text alt text

291
likes
0
pub points
92%
popularity

Publisher

verified publisherwaterydesert.com

Bottom navigation bar with water drop effect.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on water_drop_nav_bar