bottomNavigationBarTheme property
BottomNavigationBarThemeData
get
bottomNavigationBarTheme
Implementation
BottomNavigationBarThemeData get bottomNavigationBarTheme =>
BottomNavigationBarThemeData(
backgroundColor: colorScheme.surface,
selectedItemColor: colorScheme.primary,
unselectedItemColor: colorScheme.onSurfaceVariant,
elevation: 3,
type: BottomNavigationBarType.fixed,
selectedLabelStyle: textTheme.labelSmall?.copyWith(
fontWeight: FontWeight.w600,
),
unselectedLabelStyle: textTheme.labelSmall,
showSelectedLabels: true,
showUnselectedLabels: true,
);