v1.0.3blur_bottom_bar
Flutter ब्लर बॉटम बार एंड्रॉइड और iOS के लिए मैटेरियल डिज़ाइन के साथ iOS टैब व्यू की पुनरावृत्ति है
29लाइक 5230-दिन डाउनलोड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);
}),
],
),
);