NiceStepper constructor

const NiceStepper({
  1. Key? key,
  2. required List<NiceStepperStep> steps,
  3. required int activeStep,
  4. Axis orientation = Axis.horizontal,
  5. ValueChanged<int>? onStepClick,
  6. bool allowStepClick = false,
  7. bool showStepNumbers = true,
})

Implementation

const NiceStepper({
  super.key,
  required this.steps,
  required this.activeStep,
  this.orientation = Axis.horizontal,
  this.onStepClick,
  this.allowStepClick = false,
  this.showStepNumbers = true,
});