v0.0.3
flashy_tab_bar
एक और अच्छा एनिमेटेड टैबबार (फ्लटर संस्करण) (https://github.com/Cuberto/flashy-tabbar से प्रेरित)
152लाइक 2330-दिन डाउनलोड40Pub अंक
प्लेटफ़ॉर्म डेटा नहीं
एक और अच्छा एनिमेटेड टैबबार (फ्लटर संस्करण) (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('한국어'),
),
],
),