TStepper constructor

const TStepper({
  1. Key? key,
  2. required List<TStep> steps,
  3. int currentStep = 0,
  4. ValueChanged<int>? onStepTapped,
  5. TStepperType type = TStepperType.vertical,
  6. Color? color,
  7. EdgeInsetsGeometry? contentPadding,
  8. EdgeInsetsGeometry? contentMargin,
  9. Color? contentBorder,
  10. bool? titleBelowIndicator,
  11. double? indicatorSize = 24,
})

Implementation

const TStepper({
  super.key,
  required this.steps,
  this.currentStep = 0,
  this.onStepTapped,
  this.type = TStepperType.vertical,
  this.color,
  this.contentPadding,
  this.contentMargin,
  this.contentBorder,
  this.titleBelowIndicator,
  this.indicatorSize = 24,
});