MaterialNavBarData constructor

MaterialNavBarData({
  1. List<BottomNavigationBarItem>? items,
  2. Color? backgroundColor,
  3. double? iconSize,
  4. double? elevation,
  5. Color? fixedColor,
  6. Key? widgetKey,
  7. void itemChanged(
    1. int
    )?,
  8. int? currentIndex,
  9. BottomNavigationBarType? type,
  10. Key? bottomNavigationBarKey,
  11. NotchedShape? shape,
  12. Clip? clipBehavior,
  13. double? notchMargin,
  14. double? selectedFontSize,
  15. Color? selectedItemColor,
  16. bool? showSelectedLabels,
  17. bool? showUnselectedLabels,
  18. double? unselectedFontSize,
  19. Color? unselectedItemColor,
  20. IconThemeData? selectedIconTheme,
  21. TextStyle? selectedLabelStyle,
  22. IconThemeData? unselectedIconTheme,
  23. TextStyle? unselectedLabelStyle,
  24. MouseCursor? mouseCursor,
  25. bool? enableFeedback,
  26. BottomNavigationBarLandscapeLayout? landscapeLayout,
})

Implementation

MaterialNavBarData({
  super.items,
  super.backgroundColor,
  super.iconSize,
  this.elevation,
  Color? fixedColor,
  super.widgetKey,
  super.itemChanged,
  super.currentIndex,
  this.type,
  this.bottomNavigationBarKey,
  this.shape,
  this.clipBehavior,
  this.notchMargin,
  this.selectedFontSize,
  this.selectedItemColor,
  this.showSelectedLabels,
  this.showUnselectedLabels,
  this.unselectedFontSize,
  this.unselectedItemColor,
  this.selectedIconTheme,
  this.selectedLabelStyle,
  this.unselectedIconTheme,
  this.unselectedLabelStyle,
  this.mouseCursor,
  this.enableFeedback,
  this.landscapeLayout,
}) : super(activeColor: fixedColor);