Stepper constructor

const Stepper(
  1. {Key? key,
  2. required List<Step> steps,
  3. ScrollController? controller,
  4. ScrollPhysics? physics,
  5. StepperType type = StepperType.vertical,
  6. int currentStep = 0,
  7. ValueChanged<int>? onStepTapped,
  8. VoidCallback? onStepContinue,
  9. VoidCallback? onStepCancel,
  10. ControlsWidgetBuilder? controlsBuilder,
  11. double? elevation,
  12. EdgeInsetsGeometry? margin,
  13. MaterialStateProperty<Color>? connectorColor,
  14. double? connectorThickness,
  15. StepIconBuilder? stepIconBuilder}
)

Creates a stepper from a list of steps.

This widget is not meant to be rebuilt with a different list of steps unless a key is provided in order to distinguish the old stepper from the new one.

Implementation

const Stepper({
  super.key,
  required this.steps,
  this.controller,
  this.physics,
  this.type = StepperType.vertical,
  this.currentStep = 0,
  this.onStepTapped,
  this.onStepContinue,
  this.onStepCancel,
  this.controlsBuilder,
  this.elevation,
  this.margin,
  this.connectorColor,
  this.connectorThickness,
  this.stepIconBuilder,
}) : assert(0 <= currentStep && currentStep < steps.length);