flashy_tab_bar_with_badge 0.0.5 copy "flashy_tab_bar_with_badge: ^0.0.5" to clipboard
flashy_tab_bar_with_badge: ^0.0.5 copied to clipboard

One another animated tab bar with badge (Flutter Version) (inspired by https://github.com/Bilonik/flashy_tab_bar2)

flashy_tab_bar_with_badge #

GitHub license

THIS IS A FORK OF flashy_tab_bar2 by horovitz.dev

Animation

Preview #

Android iOS

Getting Started #

Add the dependency at pubspec.yaml:

dependencies:
  ...
  flashy_tab_bar_with_badge: ^0.0.3

Basic Usage #

bottomNavigationBar: FlashyTabBar(
     selectedIndex: _selectedIndex,
     showElevation: true,
     onItemSelected: (index) => setState(() {
       _selectedIndex = index;
     }),
     items: [
        FlashyTabBarItem(
          icon: Icon(Icons.event),
          title: Text('Events'),
          badge: 2,
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.search),
          title: Text('Search'),
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.highlight),
          title: Text('Highlights'),
          badge: 5,
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.settings),
          title: Text('Settings'),
        ),
      ],
),
1
likes
80
points
47
downloads

Publisher

unverified uploader

Weekly Downloads

One another animated tab bar with badge (Flutter Version) (inspired by https://github.com/Bilonik/flashy_tab_bar2)

Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on flashy_tab_bar_with_badge