Custom Rounded Square Progress Indicator with Icon in Jetpack Compose for Android
I'm trying to implement a custom progress indicator in Jetpack Compose that looks like the attached image.
A rounded square with a custom icon inside.
When the loading starts, there should be a progress indicator around the border of the square, showing the progression of the task.
Once the task is completed, the icon color should change.
I’ve tried combining CircularProgressIndicator and Box for the icon, but I’m having trouble with the following:
How to create a rounded square progress...