ProgressItem

fun ProgressItem(text: String, status: ProgressItemStatus, modifier: Modifier = Modifier, verticalAlignment: Alignment.Vertical = Alignment.Top, iconRightPadding: Dp = 24.dp)

A progress item is a component that displays a status of an operation in a Wizard component.

Parameters

text

The text to be displayed.

status

The status of the progress item.

modifier

The modifier to be applied to the layout.

verticalAlignment

The vertical alignment of the content.

iconRightPadding

The padding between the icon and the text.


fun ProgressItem(status: ProgressItemStatus, modifier: Modifier = Modifier, verticalAlignment: Alignment.Vertical = Alignment.Top, iconRightPadding: Dp = 24.dp, content: @Composable ColumnScope.() -> Unit = {})

A progress item is a component that displays a status of an operation in a Wizard component.

Parameters

status

The status of the progress item.

modifier

The modifier to be applied to the layout.

verticalAlignment

The vertical alignment of the content.

iconRightPadding

The padding between the icon and the text.

content

The content to be displayed.