Indeterminate Progress Bar
fun IndeterminateProgressBar(modifier: Modifier = Modifier, labelText: String? = null, helperText: String? = null, indented: Boolean = false, inlined: Boolean = false, state: ProgressBarState = ProgressBarState.Active, size: ProgressBarSize = ProgressBarSize.Big)
Progress Bar | Indeterminate
A progress bar provides feedback about the duration and progression of a process, such as a download, file transfer, or installation, to indicate how long a user will be waiting.
Indeterminate progress bars are used when the loading progress is unknown or the amount of wait time can’t be calculated.
(From Progress bar documentation)
Parameters
modifier
The modifier to apply to this composable.
label Text
The text label on top of the progress bar.
helper Text
The helper text below the progress bar.
indented
Whether to indent the label and helper texts.
inlined
When true, sets the label text inlined with the progress bar. In this case the helper text is not displayed.
size
The size type of the progress bar.