NiceWizard constructor
- Key? key,
- required List<
NiceWizardStep> steps, - int initialStep = 0,
- VoidCallback? onComplete,
- ValueChanged<
int> ? onStepChanged, - String nextLabel = 'Dalej',
- String prevLabel = 'Wstecz',
- String completeLabel = 'Zakończ',
Implementation
const NiceWizard({
super.key,
required this.steps,
this.initialStep = 0,
this.onComplete,
this.onStepChanged,
this.nextLabel = 'Dalej',
this.prevLabel = 'Wstecz',
this.completeLabel = 'Zakończ',
});