v0.0.3
flashy_tab_bar
もう一つの美しいアニメーションタブバー(Flutter版)(https://github.com/Cuberto/flashy-tabbar からインスパイア)
152いいね 2330日間ダウンロード40Pub ポイント
プラットフォーム情報なし
もう一つの美しいアニメーションタブバー(Flutter版)(https://github.com/Cuberto/flashy-tabbar からインスパイア)
{"sdk":"flutter"}{"sdk":"flutter"}以下は英語原文のスナップショットです。最新版は GitHub をご覧ください。
One another nice animated tabbar (Inspired by Cuberto)
Animation
| Android | iOS |
|---|---|
| https://raw.githubusercontent.com/leesnhyun/flashy_tab_bar/master/docs/emulator-android.gif | https://raw.githubusercontent.com/leesnhyun/flashy_tab_bar/master/docs/emulator-ios.gif |
Add the dependency at pubspec.yaml:
dependencies:
...
flashy_tab_bar: ^0.0.1
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('한국어'),
),
],
),