Linear

constructor(customIndicator: @Composable () -> Unit? = null)

Indeterminate linear progress indicator.

Parameters

customIndicator

Use for a custom composable indicator instead of the default one


constructor(value: Float, showProgressPercentage: Boolean = false, customProgressIndicator: @Composable (Float) -> Unit? = null)

Determinate linear progress indicator.

Parameters

value

The progress of this progress indicator, where 0.0 represents no progress and 1.0

showProgressPercentage

Display a label that reflects the progress in a percentage

customProgressIndicator

Use for a custom composable indicator instead of the default one