cupertino_stepper library

Cupertino version of the stock Material Stepper.

NOTE: This is not the same as the UIStepper control on iOS. |

Stepper is a 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.

Classes

ControlsDetails
Container for all the information necessary to build a Stepper widget's forward and backward controls for any given step.
CupertinoStepper
A cupertino 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.
Step
A material step used in Stepper. The step can have a title and subtitle, an icon within its circle, some content and a state that governs its styling.

Enums

StepperType
Defines the Stepper's main axis.
StepState
The state of a Step which is used to control the style of the circle and text.

Typedefs

ControlsWidgetBuilder = Widget Function(BuildContext context, ControlsDetails details)
A builder that creates a widget given the two callbacks onStepContinue and onStepCancel.