Composable Component

CircularProgressIndicator

Determinate Material Design circular progress indicator.

CircularProgressIndicator social preview

CircularProgressIndicator

Common
@Composable
fun CircularProgressIndicator(
    @FloatRange(from = 0.0, to = 1.0) progress: Float,
    modifier: Modifier = Modifier,
    color: Color = MaterialTheme.colors.primary,
    strokeWidth: Dp = ProgressIndicatorDefaults.StrokeWidth,
    backgroundColor: Color = Color.Transparent,
    strokeCap: StrokeCap = StrokeCap.Butt,
)

Parameters

progress The progress of this progress indicator, where 0.0 represents no progress and 1.0 represents full progress. Values outside of this range are coerced into the range.
modifier the Modifier to be applied to this progress indicator
color The color of the progress indicator.
strokeWidth The stroke width for the progress indicator.
backgroundColor The color of the background behind the indicator, visible when the progress has not reached that area of the overall indicator yet.
strokeCap stroke cap to use for the ends of this progress indicator

CircularProgressIndicator

Common
@Composable
fun CircularProgressIndicator(
    modifier: Modifier = Modifier,
    color: Color = MaterialTheme.colors.primary,
    strokeWidth: Dp = ProgressIndicatorDefaults.StrokeWidth,
    backgroundColor: Color = Color.Transparent,
    strokeCap: StrokeCap = StrokeCap.Square,
)

Parameters

modifier the Modifier to be applied to this progress indicator
color The color of the progress indicator.
strokeWidth The stroke width for the progress indicator.
backgroundColor The color of the background behind the indicator, visible when the progress has not reached that area of the overall indicator yet.
strokeCap stroke cap to use for the ends of this progress indicator
Common
Deprecated Maintained for binary compatibility

CircularProgressIndicator

@Composable
fun CircularProgressIndicator(
    progress: Float,
    modifier: Modifier = Modifier,
    color: Color = MaterialTheme.colors.primary,
    strokeWidth: Dp = ProgressIndicatorDefaults.StrokeWidth,
) =
    CircularProgressIndicator(
        progress,
        modifier,
        color,
        strokeWidth,
        backgroundColor = Color.Transparent,
        strokeCap = StrokeCap.Butt,
    )
Common
Deprecated Maintained for binary compatibility

CircularProgressIndicator

@Composable
fun CircularProgressIndicator(
    modifier: Modifier = Modifier,
    color: Color = MaterialTheme.colors.primary,
    strokeWidth: Dp = ProgressIndicatorDefaults.StrokeWidth,
) =
    CircularProgressIndicator(
        modifier,
        color,
        strokeWidth,
        backgroundColor = Color.Transparent,
        strokeCap = StrokeCap.Square,
    )