flashy_tab_bar 0.0.2 copy "flashy_tab_bar: ^0.0.2" to clipboard
flashy_tab_bar: ^0.0.2 copied to clipboard

outdated

One another nice animated tabbar (Flutter Version) (inspired by https://github.com/Cuberto/flashy-tabbar)

flashy_tab_bar #

GitHub license

One another nice animated tabbar (Inspired by Cuberto)

Animation

Android

Getting Started #

Add the dependency at pubspec.yaml:

dependencies:
  ...
  flashy_tab_bar: ^0.0.1

Basic Usage #

bottomNavigationBar: FlashyTabBar(
     selectedIndex: _selectedIndex,
     showElevation: true,
     onItemSelected: (index) => setState(() {
       _selectedIndex = index;
     }),
     items: [
       FlashyTabBarItem(
       icon: Icon(Icons.event),
       title: Text('Events'),
     ),
     FlashyTabBarItem(
          icon: Icon(Icons.search),
          title: Text('Search'),
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.highlight),
          title: Text('Highlights'),
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.settings),
          title: Text('Settings'),
        ),
        FlashyTabBarItem(
          icon: Icon(Icons.settings),
          title: Text('한국어'),
        ),
      ],
),
150
likes
40
pub points
84%
popularity

Publisher

unverified uploader

One another nice animated tabbar (Flutter Version) (inspired by https://github.com/Cuberto/flashy-tabbar)

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flashy_tab_bar