class BottomNavigationBar extends StatefulWidget {
BottomNavigationBar({
Key key,
@required this.items, //底部导航栏中排列的按钮项的样式集合。
this.onTap, // ValueChanged<int> 点击某个事件
this.currentIndex = 0, //选中的index
this.elevation = 8.0, //阴影
BottomNavigationBarType type, // fixed 固定 shifting 换档(上下切换)
Color fixedColor, //
this.backgroundColor, //背景颜色
this.iconSize = 24.0, //
Color selectedItemColor, //选中的 BottomNavigationBarItem.icon || label 颜色
this.unselectedItemColor, //没有选中的 BottomNavigationBarItem.icon || label 颜色
this.selectedIconTheme = const IconThemeData(), //
this.unselectedIconTheme = const IconThemeData(), //
this.selectedFontSize = 14.0, //选中的item 字号
this.unselectedFontSize = 12.0, //未中的item 字号
this.selectedLabelStyle,
this.unselectedLabelStyle,
this.showSelectedLabels = true,
bool showUnselectedLabels,
})
网友评论