Home > Back-end >  Circular Intermediate with background color in jetpack compose
Circular Intermediate with background color in jetpack compose

Time:01-13

I want to make circular intermediate progress bar in jetpack compose. I tried some piece of code but it's not working correctly to animate the circle. I tried this enter image description here

Expected Output

enter image description here

CodePudding user response:

In your case you want an infinite transition animating the arc of circle.
You can draw the arc using drawArc and then enter image description here

  • Related