Kwik Stepper State
data class KwikStepperState(val steps: List<String>, var currentStep: Int = 0, var isComplete: Boolean = false, val showStepNumber: Boolean = true, val showStepLabel: Boolean = true)
The state of the stepper
Parameters
steps
: The list of steps to display in the stepper.
current Step
: The current step of the stepper. Starts from 0.
is Complete
: Whether the stepper is complete or not. Default is false.
show Step Number
: Whether to show the step number in the stepper. Default is true.
show Step Label
: Whether to show the step label in the stepper. Default is true.