Flutter布局基础——BottomNavigationBar
背景
Flutter
中BottomNavigationBar
类似于 iOS 中的UITabbarController
,是导航控制器的一种,常用于首页 Tab 切换。
BottomNavigationBar
的 type 属性,默认值会根据items
的个数而定;当items
个数小于4个时,默认值为BottomNavigationBarType.fixed
;当items
个数大于等于4个,默认值为BottomNavigationBarType.shifting
。
两种效果对比如下:左侧为BottomNavigationBarType.fixed
,右侧为BottomNavigationBarType.shifting
常用属性如下:
- backgroundColor: 背景色
- currentIndex: 当前选中哪一个
- fixedColor: 选中 Item 的颜色
- iconSize: 图片大小
- items: 子元素
- onTap: 点击事件
- selectedFontSize: 选中字体大小
- selectedItemColor: 选中 Icon 颜色
- selectedLabelStyle: 选中文字的 style
- type: icon 和文字的样式
- unselectedItemColor: 未选中 Icon 的颜色
- unselectedLabelStyle: 未选中文字样式
代码如下:
1 |
|
也可以如下使用,
main.dart 中,声明home 为 BottomNavigationWidget
1 |
|
然后创建 bottom_navigation_widget.dart
,内容如下:
1 |
|
然后创建 pages 目录,pages 目录中创建home_screen.dart
、airplay_screen.dart
、email_screen.dart
、pages_screen.dart
,
代码如下:
1 |
|
这样使用,把首页 BottomNavigationWidget 拆出来到单独的类,再把 items 中每个类单独拆出来,方便修改使用。