Flutter底部菜单超过3个就不显示了
这个菜单超过3个会不显示
bottomNavigationBar: BottomNavigationBar(
// 底部导航栏
currentIndex: _currentIndex,
onTap: (index) {
setState(() {
_currentIndex = index;
});
},
backgroundColor: Colors.blue, // 蓝色底部导航栏
selectedItemColor: Colors.white,
unselectedItemColor: Colors.white70,
items: const [
//添加任务图标
BottomNavigationBarItem(icon: Icon(Icons.home), label: '首页'),
BottomNavigationBarItem(icon: Icon(Icons.assignment), label: '任务'),
// BottomNavigationBarItem(icon: Icon(Icons.add), label: '新增'),
BottomNavigationBarItem(icon: Icon(Icons.settings), label: '功能'),
BottomNavigationBarItem(icon: Icon(Icons.person), label: '个人中心'),
]
更多关于Flutter底部菜单超过3个就不显示了的实战系列教程也可以访问 https://www.itying.com/category-92-b0.html
1 回复