bface007 / flutter_floating_bottom_navigation_bar

Floating bottom navigation package for flutter

Home Page:https://pub.dev/packages/floating_bottom_navigation_bar

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

✨ Flutter Floating Bottom Navigation Bar

Fully customizable floating bottom navigation package for flutter.

🎮 How To Use

    Scaffold(
          appBar: AppBar(
            title: Text('Example'),
          ),
          //If you want to show body behind the navbar, it should be true
          extendBody: true,
          bottomNavigationBar: FloatingNavbar(
            onTap: (int val) {
              //returns tab id which is user tapped
            },
            currentIndex: 0,
            items: [
              FloatingNavbarItem(icon: Icons.home, title: 'Home'),
              FloatingNavbarItem(icon: Icons.explore, title: 'Explore'),
              FloatingNavbarItem(icon: Icons.chat_bubble_outline, title: 'Chats'),
              FloatingNavbarItem(icon: Icons.settings, title: 'Settings'),
            ],
          ),
          
        );

❗️ Note

  • Pull requests are welcomed, especially the animations :)

⭐️ License

MIT License

About

Floating bottom navigation package for flutter

https://pub.dev/packages/floating_bottom_navigation_bar

License:BSD 3-Clause "New" or "Revised" License


Languages

Language:Dart 89.0%Language:Kotlin 4.4%Language:Swift 4.3%Language:HTML 1.9%Language:Objective-C 0.4%