KPHorizontalLoadingIndicator

fun KPHorizontalLoadingIndicator(modifier: Modifier = Modifier, progressState: HorizontalProgressState = HorizontalProgressState.INFINITIVE, @FloatRange(from = 0.0, to = 1.0) progressValue: Float = 0.0f)

Composable function for displaying a horizontal loading indicator. This function creates a horizontal loading indicator that can be used in Jetpack Compose UI.

Parameters

modifier

Optional parameter to specify the modifier for this composable.

progressState

Optional parameter to specify the state of the loading progress. Defaults to INFINITIVE.

progressValue

Optional parameter to specify the progress value (0.0 to 1.0). Defaults to 0.0.