Flutter BottomNavigationBar 常见问题

Updated on with 854 views

1.设置BottomNavigationBarItem超过3个,不显示文字

查看源码发现,BottomNavigationBarType的type在默认情况下item小于等于3个的时候是fixed,大于3个type是shifting。

image.png

因此,设置BottomNavigationBarType为fixed即可。

BottomNavigationBar(
        type: BottomNavigationBarType.fixed,

        items: [...]
	)


标题:Flutter BottomNavigationBar 常见问题
作者:yanjing
地址:https://yanjingtp.cn/articles/2022/02/16/1645004180898.html