flashy_tab_bar2

Creator: coderz1093

Last updated:

Add to Cart

Description:

flashy tab bar2

flashy_tab_bar2 #

THIS IS A FORK OF flashy_tab_bar by leesnhyun
One another nice animated tabbar (Inspired by Cuberto)

Preview #



Android
iOS









Getting Started #
Add the dependency at pubspec.yaml:
dependencies:
...
flashy_tab_bar2: ^0.0.10
copied to clipboard
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('한국어'),
),
],
),
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.