NiceStepper constructor
- Key? key,
- required List<
NiceStepperStep> steps, - required int activeStep,
- Axis orientation = Axis.horizontal,
- ValueChanged<
int> ? onStepClick, - bool allowStepClick = false,
- 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,
});