BottomBarInspiredFancy constructor

const BottomBarInspiredFancy({
  1. Key? key,
  2. required List<TabItem> items,
  3. required Color backgroundColor,
  4. List<BoxShadow>? boxShadow,
  5. double? blur,
  6. BorderRadius? borderRadius,
  7. int indexSelected = 0,
  8. dynamic onTap(
    1. int index
    )?,
  9. required Color color,
  10. required Color colorSelected,
  11. double iconSize = 22,
  12. TextStyle? titleStyle,
  13. double? paddingVertical,
  14. CountStyle? countStyle,
  15. StyleIconFooter styleIconFooter = StyleIconFooter.divider,
  16. bool animated = true,
  17. Duration? duration,
  18. Curve? curve,
  19. double? bottom = 24,
  20. double? top = 24,
  21. double? pad = 4,
  22. bool? enableShadow = true,
})

Implementation

const BottomBarInspiredFancy({
  Key? key,
  required this.items,
  required this.backgroundColor,
  this.boxShadow,
  this.blur,
  this.borderRadius,
  this.indexSelected = 0,
  this.onTap,
  required this.color,
  required this.colorSelected,
  this.iconSize = 22,
  this.titleStyle,
  this.paddingVertical,
  this.countStyle,
  this.styleIconFooter = StyleIconFooter.divider,
  this.animated = true,
  this.duration,
  this.curve,
  this.bottom = 24,
  this.top = 24,
  this.pad = 4,
  this.enableShadow = true,
}) : super(key: key);