Created
May 9, 2024 20:21
-
-
Save aritra-tech/458ca7638f5739d54b21086204fa0c37 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
CircularProgressIndicator( | |
progress = .7f, | |
modifier = Modifier | |
.fillMaxSize() | |
.padding(all = 1.dp), | |
startAngle = 295.5f, | |
endAngle = 245.5f, | |
indicatorColor = MaterialTheme.colors.secondary, | |
trackColor = MaterialTheme.colors.onBackground.copy(alpha = 0.1f), | |
strokeWidth = 6.dp | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment