BottomBarInspiredInside constructor

const BottomBarInspiredInside({
  1. Key? key,
  2. required List<TabItem> items,
  3. required Color backgroundColor,
  4. required Color color,
  5. required Color colorSelected,
  6. double? height = 40,
  7. double? elevation,
  8. bool fixed = false,
  9. int indexSelected = 0,
  10. dynamic onTap(
    1. int index
    )?,
  11. double iconSize = 22,
  12. TextStyle? titleStyle,
  13. CountStyle? countStyle,
  14. ChipStyle? chipStyle,
  15. ItemStyle? itemStyle,
  16. bool animated = true,
  17. bool isAnimated = true,
  18. Duration? duration,
  19. Curve? curve,
  20. double? sizeInside = 48,
  21. double? padTop = 12,
  22. double? padbottom = 12,
  23. double? pad = 4,
  24. double? radius = 0,
  25. int? fixedIndex = 0,
})

Implementation

const BottomBarInspiredInside({
  Key? key,
  required this.items,
  required this.backgroundColor,
  required this.color,
  required this.colorSelected,
  this.height = 40,
  this.elevation,
  this.fixed = false,
  this.indexSelected = 0,
  this.onTap,
  this.iconSize = 22,
  this.titleStyle,
  this.countStyle,
  this.chipStyle,
  this.itemStyle,
  this.animated = true,
  this.isAnimated = true,
  this.duration,
  this.curve,
  this.sizeInside = 48,
  this.padTop = 12,
  this.padbottom = 12,
  this.pad = 4,
  this.radius = 0,
  this.fixedIndex = 0,
}) : super(key: key);