Style BottomNavigationBar in Flutter

前端 未结 9 657
醉话见心
醉话见心 2020-12-12 19:22

I am trying out Flutter and I am trying to change the colour of the BottomNavigationBar on the app but all I could achieve was change the colour of the Bo

9条回答
  •  死守一世寂寞
    2020-12-12 19:24

    Earlier there was no direct way to set the colors, but now you can use.

    BottomNavigationBar(
      backgroundColor: Colors.red,
      selectedItemColor: Colors.black,
      unselectedItemColor: Colors.white,
      ...
    )  
    

提交回复
热议问题