SimpleTab constructor

const SimpleTab({
  1. Key? key,
  2. String? label,
  3. WrapperModel? wrapperModel,
  4. double? height,
  5. bool? rotate,
  6. int? rotateTurns,
  7. IconData? icon,
  8. bool iconFirst = true,
  9. bool vertical = false,
  10. double spacing = 4,
  11. double iconSize = 24,
  12. TextStyle? textStyle,
})

Implementation

const SimpleTab({
  super.key,
  super.label,
  super.wrapperModel,
  super.height,
  super.rotate,
  super.rotateTurns,
  this.icon,
  this.iconFirst = true,
  this.vertical = false,
  this.spacing = 4,
  this.iconSize = 24,
  this.textStyle,
});