BottomNavBar constructor

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

Implementation

const BottomNavBar(
    {required this.items,
    this.iconSize,
    this.backgroundColor,
    this.color,
    this.selectedColor,
    this.unselectedColor,
    this.shadow,
    this.selected,
    this.isWidthFixed,
    this.visible,
    this.bottomSheetWidget,
    this.showBottomSheetAt,
    this.bottomSheetHistory,
    this.duration});