0
点赞
收藏
分享

微信扫一扫

Flutter BottomNavigationBar不显示(显示白色)?

小北的爹 2022-06-13 阅读 217


BottomNavigationBar 超过3个之后不显示(显示白色)?

Flutter BottomNavigationBar不显示(显示白色)?_flutter

官网文档解释:

The bottom navigation bar’s type changes how its items are displayed. If not specified it’s automatically set to
BottomNavigationBarType.fixed when there are less than four items,
BottomNavigationBarType.shifting otherwise.

  • BottomNavigationBarType.fixed, the default when there are less than four items. The selected item is rendered with fixedColor if it’s
    non-null, otherwise the theme’s ThemeData.primaryColor is used. The
    navigation bar’s background color is the default Material background
    color, ThemeData.canvasColor (essentially opaque white).
  • BottomNavigationBarType.shifting, the default when there are four or more items. All items are rendered in white and the navigation bar’s
    background color is the same as the
    BottomNavigationBarItem.backgroundColor of the selected item. In this
    case it’s assumed that each item will have a different background
    color and that background color will contrast well with white.


解决办法:

加一个type属性:

type: BottomNavigationBarType.fixed,

Flutter BottomNavigationBar不显示(显示白色)?_flutter_02




举报

相关推荐

0 条评论