dynamic_stepper library

Classes

DynamicControlsDetails
Container for all the information necessary to build a Stepper widget's forward and backward controls for any given step.
DynamicStep
A material step used in DynamicStepper. The step can have a title and subtitle, an icon within its circle, some content and a state that governs its styling.
DynamicStepper
A material stepper widget that displays progress through a sequence of steps. Steppers are particularly useful in the case of forms where one step requires the completion of another one, or where multiple steps need to be completed in order to submit the whole form.
StepStyle
This class is used to override the default visual properties of Step widgets within a Stepper.

Enums

DynamicStepperType
Defines the DynamicStepper's main axis.
DynamicStepState
The state of a DynamicStep which is used to control the style of the circle and text.

Typedefs

ControlsWidgetBuilder = Widget Function(BuildContext context, DynamicControlsDetails details)
A builder that creates a widget given the two callbacks onStepContinue and onStepCancel.
StepIconBuilder = Widget? Function(int stepIndex, DynamicStepState stepState)
A builder that creates the icon widget for the Step at stepIndex, given stepState.