v0.0.3
flashy_tab_bar
另一个漂亮的动画标签栏(Flutter 版本)(受 https://github.com/Cuberto/flashy-tabbar 启发)
152喜欢 23近 30 天下载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('한국어'),
),
],
),