SSBottomNav constructor

const SSBottomNav({
  1. required List<SSBottomNavItem> items,
  2. required SSBottomBarState state,
  3. double? iconSize,
  4. Color? backgroundColor,
  5. Color? color,
  6. Color? selectedColor,
  7. Color? unselectedColor,
  8. List<BoxShadow>? shadow,
  9. Widget? bottomSheetWidget,
  10. int showBottomSheetAt = 0,
  11. int? selected,
  12. Duration? duration,
  13. bool visible = true,
  14. bool bottomSheetHistory = true,
})

Implementation

const SSBottomNav({
  required this.items,
  required this.state,
  this.iconSize,
  this.backgroundColor,
  this.color,
  this.selectedColor,
  this.unselectedColor,
  this.shadow,
  this.bottomSheetWidget,
  this.showBottomSheetAt = 0,
  this.selected,
  this.duration,
  this.visible = true,
  this.bottomSheetHistory = true,
//      this.isWidthFixed = false
});