Skip to content

Instantly share code, notes, and snippets.

@Kiolk
Last active February 20, 2026 20:42
Show Gist options
  • Select an option

  • Save Kiolk/e4b13a1fd8f20aa7b2dfb310d773de73 to your computer and use it in GitHub Desktop.

Select an option

Save Kiolk/e4b13a1fd8f20aa7b2dfb310d773de73 to your computer and use it in GitHub Desktop.
Simple ProgressBar
Box(
modifier = modifier
.fillMaxWidth()
.height(height)
.clip(RoundedCornerShape(50))
.background(trackColor)
) {
Box(
modifier = Modifier
.fillMaxWidth(animatedProgress)
.fillMaxHeight()
.clip(RoundedCornerShape(50))
.background(progressColor)
)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment