在Flutter中为选定的BottomNavigationBarItem禁用文本增长动画

时间:2018-12-29 17:54:09

标签: flutter material-design flutter-animation

当我在flutter应用程序中点击BottomNavigationBarItem时,我看到动画-所选项目的字体大小增加了。

是否有任何方法可以禁用它或控制此行为?

3 个答案:

答案 0 :(得分:2)

是的,我们可以通过将 type 设置为 BottomNavigationBarType.fixed

来做到这一点。
BottomNavigationBar(
    type: BottomNavigationBarType.fixed,

答案 1 :(得分:1)

我认为如果不创建自己的小部件就无法完成此操作,因为无法禁用Flutter源代码中的font increasing animation

答案 2 :(得分:0)

selectedFontSize: fontSize,
unselectedFontSize: fontSize,