GlassWizard constructor
const
GlassWizard({
- Key? key,
- required List<
GlassWizardStep> steps, - int currentStep = 0,
- ValueChanged<
int> ? onStepTapped, - ScrollPhysics? physics,
- double indicatorSize = 28.0,
- Color? activeColor,
- Color? completedColor,
- Color? inactiveColor,
- LiquidGlassSettings? settings,
- GlassQuality? quality,
- EdgeInsetsGeometry padding = const EdgeInsets.all(16),
Creates a glass wizard with the given steps.
Implementation
const GlassWizard({
super.key,
required this.steps,
this.currentStep = 0,
this.onStepTapped,
this.physics,
this.indicatorSize = 28.0,
this.activeColor,
this.completedColor,
this.inactiveColor,
this.settings,
this.quality,
this.padding = const EdgeInsets.all(16),
});