Style BottomNavigationBar in Flutter

前端 未结 9 656
醉话见心
醉话见心 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:49

    Set following properties to change the background, selected and unselected colors

    bottomNavigationBar: BottomNavigationBar(
            backgroundColor: Colors.blue,
            selectedItemColor: Colors.black,
            unselectedItemColor: Colors.white,
            type: BottomNavigationBarType.fixed,
            ...
    )
    

提交回复
热议问题