StepperTheme constructor

const StepperTheme({
  1. Axis? direction,
  2. StepSize? size,
  3. StepVariant? variant,
})

Creates a StepperTheme.

All parameters are optional and provide default values for stepper components in the widget tree.

Parameters:

  • direction (Axis?): horizontal or vertical layout
  • size (StepSize?): step indicator size (small, medium, large)
  • variant (StepVariant?): visual style (circle, circleAlt, line)

Implementation

const StepperTheme({this.direction, this.size, this.variant});