items: const <BottomNavigationBarItem>[
BottomNavigationBarItem(
icon: Icon(Icons.home),
label: 'Home', // this i want to change font family
),
],
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.