floaty_navy_bar 1.0.5 copy "floaty_navy_bar: ^1.0.5" to clipboard
floaty_navy_bar: ^1.0.5 copied to clipboard

A highly customizable and dynamic floating navigation bar. Use this for your Flutter apps where you need a bottom navigation bar.

📦 Floaty Navy Bar #

Version: 1.0.5 #

💻 EXAMPLE #

      Scaffold(
        backgroundColor: Colors.grey[140],
        // BODY TAKES IN A STACK WIDGET WHICH INCLUDES:
        // List<Widgets>, [Home(), Search(), Settings(), Profile()] and
        // FloatingNavigationBar
        // CREATE A BOOL VARIABLE _isVisible and INITIALIZE IT TRUE
        // ** DETERMINE _isVisible WITH YOUR SCROLLCONTROLLER
        body: Stack(
          children: [
            List<Widget>,
            FloatyNavyBar(
            opacityAnimation: _isVisible, 
            backgroundColor: Colors.black,
              barHeight: 70.0,
              iconColor: Colors.white,
              textStyle: const TextStyle(
                color: Colors.white,
                fontSize: 14.0,
              ),
              iconSize: 28.0,
              indicatorColor: Colors.white,
              indicatorHeight: 3,
              indicatorWidth: 14.0,
              items: [
                NavyBarItem(
                  icon: EvaIcons.homeOutline,
                ),
                NavyBarItem(
                  icon: EvaIcons.search,
                  title: "Search",
                ),
                NavyBarItem(
                  icon: EvaIcons.settingsOutline,
                ),
                NavyBarItem(
                  icon: EvaIcons.personOutline,
                  title: "Profile",
                ),
              ],
              onChanged: (value) {
                // USE YOUR STATE MANAGEMENT TECHNIQUE TO GET
                // AND CHANGE INDEX OF NAVIGATION BAR
              },
            )
          ],
        ),
      );

Willing to contribute? Go ahead and send pull request 😁

Found bug or issues? 😞 Open an issue on Github repo

🔑 License #

MIT License

3
likes
130
pub points
48%
popularity

Publisher

unverified uploader

A highly customizable and dynamic floating navigation bar. Use this for your Flutter apps where you need a bottom navigation bar.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on floaty_navy_bar