Skip to content

abdelrahmanelmarakby/flashy_tab_bar2

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

flashy_tab_bar2

GitHub license

THIS IS A FORK OF flashy_tab_bar by leesnhyun

One another nice animated tabbar (Inspired by Cuberto)

Animation

Preview

Android iOS

Getting Started

Add the dependency at pubspec.yaml:

dependencies:
  ...
  flashy_tab_bar2: ^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'),
        ),
        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

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 63.7%
  • HTML 23.1%
  • Ruby 8.3%
  • Swift 2.5%
  • Kotlin 2.2%
  • Objective-C 0.2%