CustomStepper constructor

const CustomStepper({
  1. Key? key,
  2. required int currentStep,
  3. EdgeInsetsGeometry? padding,
  4. TextAlign? labelAlign,
  5. double? labelTextSize,
  6. Color? lableColor,
  7. String? labelText,
  8. double? size,
  9. required List<Widget> steps,
  10. List<Widget>? stepsDetails,
  11. Axis? direction,
  12. bool? enableLine,
  13. Color? notActiveColor,
  14. Color? activeColor,
  15. bool? shrinkWrap,
})

Implementation

const CustomStepper({
  super.key,
  required this.currentStep,
  this.padding,
  this.labelAlign,
  this.labelTextSize,
  this.lableColor,
  this.labelText,
  this.size,
  required this.steps,
  this.stepsDetails,
  this.direction,
  this.enableLine,
  this.notActiveColor,
  this.activeColor,
  this.shrinkWrap,
});