欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

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: []
)