v1.0.3blur_bottom_bar
Flutter 블러 바텀바는 Android 및 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);
}),
],
),
);