当我在flutter应用程序中点击BottomNavigationBarItem时,我看到动画-所选项目的字体大小增加了。
是否有任何方法可以禁用它或控制此行为?
答案 0 :(得分:2)
是的,我们可以通过将 type 设置为 BottomNavigationBarType.fixed
来做到这一点。BottomNavigationBar(
type: BottomNavigationBarType.fixed,
答案 1 :(得分:1)
我认为如果不创建自己的小部件就无法完成此操作,因为无法禁用Flutter源代码中的font increasing animation。
答案 2 :(得分:0)
selectedFontSize: fontSize,
unselectedFontSize: fontSize,