leesnhyun / flashy_tab_bar

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

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

flashy_tab_bar

GitHub license

One another nice animated tabbar (Inspired by Cuberto)

Animation

Preview

Android iOS

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('한국어'),
        ),
      ],
),

About

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

License:MIT License


Languages

Language:Dart 76.1%Language:Kotlin 8.6%Language:Swift 7.0%Language:Ruby 5.4%Language:Objective-C 2.9%