Package-level declarations

Types

Link copied to clipboard
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

Functions

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
fun KwikLineStepper(state: MutableState<KwikStepperState>, modifier: Modifier = Modifier, activeStepColor: Color = MaterialTheme.colorScheme.primary)

A stepper component that displays a series of steps with indicators in classic style. (0) -> (1) -> (2) -> (3)

Link copied to clipboard
fun KwikStepper(state: MutableState<KwikStepperState>, modifier: Modifier = Modifier, activeStepColor: Color = MaterialTheme.colorScheme.primary)

A stepper component that displays a series of steps with indicators.

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Move to a specific step

Link copied to clipboard

A state holder for the stepper. Refer to KwikStepperState

Link copied to clipboard

Allows to set new steps to the stepper