v1.0.3blur_bottom_bar
Flutter 模糊底欄是 iOS 標籤檢視的再現,採用 Material Design 適用於 Android 和 iOS
29喜歡 52近 30 天下載150Pub 分數
AndroidiOSWebmacOSWindowsLinux
Flutter 毛玻璃底部欄
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Flutter blur bottom bar
This is a recreation of the ios tab view with material design for android and ios
BlurBottomBar Gif BlurBottomBar Gif
Add the dependency in pubspec.yaml:
dependencies:
...
blur_bottom_bar: ^1.0.1
return Scaffold(
appBar: AppBar(title: Text("Blur bar example")),
body: Stack(
children: <Widget>[
_widgetOptions.elementAt(_selectedIndex),
BlurBottomView(
bottomNavigationBarItems: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home'),
),
BottomNavigationBarItem(
icon: Icon(Icons.business),
label: 'Business',
),
BottomNavigationBarItem(
icon: Icon(Icons.school),
label: 'School',
)
],
currentIndex: _selectedIndex,
onIndexChange: (val) {
_onItemTapped(val);
}),
],
),
);