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
BottomNavigationBar
Bo
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, ... )