flutter 底部导航栏没有文字
程序员文章站
2022-05-29 18:37:37
...
问题:超过三个icon就会导致label的文字消失
解决方案:固定底部导航栏
关键代码: type: BottomNavigationBarType.fixed,
bottomNavigationBar: BottomNavigationBar(
type: BottomNavigationBarType.fixed,
selectedItemColor: Colors.red,
unselectedItemColor: Colors.black45,
currentIndex: 4,
items: []
)