NiceWizard constructor
const
NiceWizard({
- Key? key,
- required List<
NiceWizardStep> steps, - int initialStep = 0,
- void onStepChanged(
- int step
- void onComplete()?,
- void onCancel()?,
- NiceWizardStyle style = NiceWizardStyle.horizontal,
- bool showStepIndicator = true,
- bool canSkipSteps = false,
- String? nextLabel,
- String? backLabel,
- String? finishLabel,
- String? cancelLabel,
Implementation
const NiceWizard({
super.key,
required this.steps,
this.initialStep = 0,
this.onStepChanged,
this.onComplete,
this.onCancel,
this.style = NiceWizardStyle.horizontal,
this.showStepIndicator = true,
this.canSkipSteps = false,
this.showNavigation = true,
this.nextLabel,
this.backLabel,
this.finishLabel,
this.cancelLabel,
});