AuiStepper constructor

const AuiStepper({
  1. Key? key,
  2. required List<AuiStep> steps,
  3. required int currentStep,
  4. StepperDirection direction = StepperDirection.horizontal,
  5. Color? activeColor,
  6. Color? completedColor,
  7. Color? errorColor,
  8. Color? inactiveColor,
  9. Color? connectorColor,
})

Creates an AuiStepper.

Implementation

const AuiStepper({
  super.key,
  required this.steps,
  required this.currentStep,
  this.direction = StepperDirection.horizontal,
  this.activeColor,
  this.completedColor,
  this.errorColor,
  this.inactiveColor,
  this.connectorColor,
});