bottomNavigationBarTheme top-level property

dynamic bottomNavigationBarTheme
getter/setter pair

Implementation

var bottomNavigationBarTheme = BottomNavigationBarThemeData(
  backgroundColor: surfaceColor,
  unselectedLabelStyle: const TextStyle(
    color: Colors.white,
    fontSize: 12,
    fontWeight: FontWeight.w400,
  ),
  selectedItemColor: Colors.white,
  unselectedItemColor: Colors.white,
  selectedLabelStyle: const TextStyle(
    color: Colors.white,
    fontSize: 12,
    fontWeight: FontWeight.w400,
    height: 1.5,
  ),
  selectedIconTheme: const IconThemeData(color: Colors.white, size: 18),
  unselectedIconTheme: const IconThemeData(color: Colors.white, size: 18),
  type: BottomNavigationBarType.fixed,
  elevation: 0,
);