Jetpack Compose Gradient Progress Bar

jetpack compose custom progress indicator

This is a linear gradient progress bar made with Android Jetpack Compose. It has round corners. It uses Canvas API to draw the foreground and background bars. I have also added animation to the foreground bar. The default Jetpack Compose LinearProgressIndicator offers customizations like round corners, height, animation duration, size, and colors. But, when I … Read more

Jetpack Compose Circular Progress bar with Source Code

jetpack compose circular progress bar

This is a Jetpack Compose circular progress bar UI design. It is made with Canvas to draw the circles. The circles get animated using the animateFloatAsState API. You can download the source code for free (below). In Android, the default Jetpack Compose has two progress bars. They are linear and circular. They do not have … Read more

Jetpack Compose Custom Progress Bar with Animation

CircularProgressIndicator Compose

This is a Jetpack Compose progress bar UI with animation. It utilizes the Canvas API to draw the circles. There are two circles – foreground indicator and background indicator. The foreground indicator is the one that gets animated when the progress value is changed. In Android, the Jetpack Compose has two default progress bars. They … Read more

Jetpack Compose Custom Progress Indicator 3

Jetpack Compose Custom Progress Indicator

This is a Jetpack Compose progress indicator design along with animations. It is made with APIs like Canvas to render the circles, animateFloatAsState to animate the circles, and Text composable to display the text at the center of the circles. The Android Jetpack Compose has a default circular progress bar. But the problem is that … Read more

Jetpack Compose Arc-shaped Custom Progress Indicator

Android Compose Custom Progress Bar

Here is a custom progress bar made with Android Jetpack Compose. It is an Arc-shaped Indicator with a number at the center.