Search code examples
flutterdartflutter-android

how to change Fontfamily in BottomNavigationBarItem Flutter label?


items: const <BottomNavigationBarItem>[
        BottomNavigationBarItem(
          icon: Icon(Icons.home),
          label: 'Home', // this i want to change font family
        ),

],

enter image description here


Solution

  • I think this will work:

    BottomNavigationBar has properties like

    TextStyle? selectedLabelStyle and TextStyle? unselectedLabelStyle

    Using these properties, you can assign TextStyle to your label text and change the fontStyle/font family of the BottomNavigationBar item.