Wizard
View Source
This is step number 1.
This is step number 2.
This is step number 3.
This is step number 4.
This is step number 5.
This is step number 6.
This is step number 7.
This is step number 8.
This is step number 9.
This is step number 10.
This is step number 11.
This is step number 12.
This is step number 13.
This is step number 14.
This is step number 15.
This is step number 16.
Props
Accepts StackView props.
Use the wizard
key in ThemeProvider
to customize the default properties of this component.
boolean
Always display cancel button.
ButtonProps
Pass props to the back button.
ButtonProps
Pass props to the cancel button.
ReactReactNode
The content of the component.
Record
The initial payload state.
ButtonProps
Pass props to the next button.
(props: {
activeStepIndex: number
steps: StepProps[]
totalSteps: number
}) => string
Determines what the next button title displays.
() => void
Creates a cancel button for canceling a process from the first step.
(payload: Record<string, any>, complete: () => void) => void
Called when the Done
button is pressed on the last view. Passes back the payload
state
as well as an option complete
callback to revert the button spinner back to normal.
(props: {
activeStepIndex: number
steps: StepProps[]
totalSteps: number
}) => React.ReactNode
Provide a custom progress component to render in place of StepperProgress
.