• Stars
    star
    109
  • Rank 319,077 (Top 7 %)
  • Language
    Dart
  • License
    BSD 3-Clause "New...
  • Created almost 5 years ago
  • Updated 8 months ago

Reviews

There are no reviews yet. Be the first to send feedback to the community and the maintainers!

Repository Details

Floating bottom navigation package for flutter

โœจ 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