BottomNavigationBarParameters constructor

const BottomNavigationBarParameters({
  1. double? elevation,
  2. BottomNavigationBarType? type,
  3. Color? fixedColor,
  4. Color? backgroundColor,
  5. double iconSize = 24.0,
  6. Color? selectedItemColor,
  7. Color? unselectedItemColor,
  8. IconThemeData? selectedIconTheme,
  9. IconThemeData? unselectedIconTheme,
  10. double selectedFontSize = 14.0,
  11. double unselectedFontSize = 12.0,
  12. TextStyle? selectedLabelStyle,
  13. TextStyle? unselectedLabelStyle,
  14. bool? showSelectedLabels,
  15. bool? showUnselectedLabels,
  16. MouseCursor? mouseCursor,
  17. bool? enableFeedback,
  18. BottomNavigationBarLandscapeLayout? landscapeLayout,
})

Create a BottomNavigationBarParameters instance.

Implementation

const BottomNavigationBarParameters({
  this.elevation,
  this.type,
  this.fixedColor,
  this.backgroundColor,
  this.iconSize = 24.0,
  this.selectedItemColor,
  this.unselectedItemColor,
  this.selectedIconTheme,
  this.unselectedIconTheme,
  this.selectedFontSize = 14.0,
  this.unselectedFontSize = 12.0,
  this.selectedLabelStyle,
  this.unselectedLabelStyle,
  this.showSelectedLabels,
  this.showUnselectedLabels,
  this.mouseCursor,
  this.enableFeedback,
  this.landscapeLayout,
});