🌈 Create new beautiful Compose Gradients with our new wesite ->

SegmentedCircularProgressIndicator

SegmentedCircularProgressIndicator preview
Kotlin
@Composable
fun SegmentedProgressIndicatorSample() {
    Box(
        modifier =
            Modifier.background(MaterialTheme.colorScheme.background)
                .padding(CircularProgressIndicatorDefaults.FullScreenPadding)
                .fillMaxSize()
    ) {
        SegmentedCircularProgressIndicator(segmentCount = 5, progress = { 0.5f })
    }
}