GlassWizard constructor

const GlassWizard({
  1. Key? key,
  2. required List<GlassWizardStep> steps,
  3. int currentStep = 0,
  4. ValueChanged<int>? onStepTapped,
  5. ScrollPhysics? physics,
  6. double indicatorSize = 28.0,
  7. Color? activeColor,
  8. Color? completedColor,
  9. Color? inactiveColor,
  10. LiquidGlassSettings? settings,
  11. GlassQuality? quality,
  12. 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),
});