Progress Indicator
A foundational component used to build progress indicators.
For interactive preview & code examples, visit Progress Indicator Documentation.
Basic Example
ProgressIndicator(
progress = 0.5f,
shape = RoundedCornerShape(4.dp),
backgroundColor = Color(0xFFE4E4E4),
contentColor = Color(0xFF6699FF)
) {
ProgressBar()
}Parameters
The progress value between 0.0 and 1.0.
Modifier to be applied to the progress indicator.
The shape of the progress indicator.
The background color of the progress indicator.
The color of the content.
The content of the progress indicator. For a batteries included component see ProgressBar.
A foundational component used to build progress indicators.
For interactive preview & code examples, visit Progress Indicator Documentation.
Basic Example
ProgressIndicator(
progress = 0.5f,
shape = RoundedCornerShape(4.dp),
backgroundColor = Color(0xFFE4E4E4),
contentColor = Color(0xFF6699FF)
) {
ProgressBar()
}Parameters
Modifier to be applied to the progress indicator.
The shape of the progress indicator.
The background color of the progress indicator.
The color of the content.
The content of the progress indicator.