Style BottomNavigationBar in Flutter

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

    You can currently style them BottomNavigationBar directly from the Theme, like this:

    ThemeData(
         
          bottomNavigationBarTheme: BottomNavigationBarThemeData(
            backgroundColor: Colors.grey[900],
            elevation: 10,
            selectedLabelStyle: TextStyle(
                color: Color(0xFFA67926), fontFamily: 'Montserrat', fontSize: 14.0),
            unselectedLabelStyle: TextStyle(
                color: Colors.grey[600], fontFamily: 'Montserrat', fontSize: 12.0),
            selectedItemColor: Color(0xFFA67926),
            unselectedItemColor: Colors.grey[600],
            showUnselectedLabels: true,
          ),
    

    )

提交回复
热议问题