BottomBarCreative constructor

const BottomBarCreative({
  1. Key? key,
  2. required List<TabItem> items,
  3. required Color backgroundColor,
  4. List<BoxShadow>? boxShadow,
  5. double? blur,
  6. int? visitHighlight,
  7. BorderRadius? borderRadius,
  8. int indexSelected = 0,
  9. dynamic onTap(
    1. int index
    )?,
  10. required Color color,
  11. required Color colorSelected,
  12. double iconSize = 22,
  13. TextStyle? titleStyle,
  14. Color? backgroundSelected,
  15. double? paddingVertical,
  16. CountStyle? countStyle,
  17. bool isFloating = false,
  18. HighlightStyle? highlightStyle,
  19. double? top = 12,
  20. double? bottom = 12,
  21. double? pad = 4,
  22. bool? enableShadow = true,
})

Implementation

const BottomBarCreative({
  Key? key,
  required this.items,
  required this.backgroundColor,
  this.boxShadow,
  this.blur,
  this.visitHighlight,
  this.borderRadius,
  this.indexSelected = 0,
  this.onTap,
  required this.color,
  required this.colorSelected,
  this.iconSize = 22,
  this.titleStyle,
  this.backgroundSelected,
  this.paddingVertical,
  this.countStyle,
  this.isFloating = false,
  this.highlightStyle,
  this.top = 12,
  this.bottom = 12,
  this.pad = 4,
  this.enableShadow = true,
}) : super(
        key: key,
      );