首页 > 解决方案 > 在颤动的BottomNavigationBar中不起作用

问题描述

 bottomNavigationBar: new BottomNavigationBar(items: [
    new BottomNavigationBarItem(icon: new Icon(Icons.account_balance))]),

当我运行时,我收到此错误

错误

标签: flutterdartflutter-layout

解决方案


您需要至少有 2 个孩子来满足您的items喜好:

bottomNavigationBar: BottomNavigationBar(
  items: [
    BottomNavigationBarItem(
      icon: Icon(Icons.account_balance),
    ),
    BottomNavigationBarItem(
      icon: Icon(Icons.account_circle),
    ),
  ],
)

推荐阅读