BottomNavigationBar({
Key key,
@required this.items,//必须要实现的,最少要有两个子widgets
this.onTap,//点击事件,知道当前点击的是哪一个widget
this.currentIndex = 0,//当前显示的是哪一个widget
this.elevation = 8.0,
BottomNavigationBarType type,//设置items的布局
Color fixedColor,//相当于selectedItemColor,但是不能跟selectedItemColor同时存在
this.backgroundColor,//设置背景颜色
this.iconSize = 24.0,//设置图标大小
Color selectedItemColor,//设置选中时的颜色
this.unselectedItemColor,//设置没选中时的颜色
this.selectedIconTheme = const IconThemeData(),//设置选中时的icon的主题
this.unselectedIconTheme = const IconThemeData(),//设置没选中时的icon的主题
this.selectedFontSize = 14.0,//设置选中时文字大小
this.unselectedFontSize = 12.0,//设置没选中时的文字大小
this.selectedLabelStyle,//设置选中时的labe样式
this.unselectedLabelStyle,//设置没选中时的labe样式
this.showSelectedLabels = true,//设置选中时是否显示文字
bool showUnselectedLabels,//设置没选中时是否显示文字
})
Flutter BottomNavigationBar
最新推荐文章于 2024-06-19 18:17:32 发布