ProgressTrackerRow
fun ProgressTrackerRow(items: ImmutableList<ProgressStep>, modifier: Modifier = Modifier, intent: ProgressTrackerIntent = ProgressTrackerIntent.Basic, style: ProgressStyles = ProgressStyles.Outlined, size: ProgressSizes = ProgressSizes.Large, hasIndicatorContent: Boolean = true, onStepClick: (index: Int) -> Unit? = null, selectedStep: Int = 0)
ProgressTrackerRow is a visual navigation element typically used to display progress or guide user through a multi-step process. It displays a linear progress as steps, accepts between 2 and 6 steps maximum.
For the vertical use ProgressTrackerColumn instead.
Each step displays its label via stepLabel. Selection and click are handled. A step indicator is displayed via StepIndicator for each step. Its state is updated according to selection.