Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save widiarifki/7a6c4608ae635c53a07944a2eda9c54b to your computer and use it in GitHub Desktop.
Save widiarifki/7a6c4608ae635c53a07944a2eda9c54b to your computer and use it in GitHub Desktop.
@Composable
fun LoadingIndicator(modifier: Modifier = Modifier) {
Box(modifier = modifier.fillMaxWidth(), contentAlignment = Alignment.Center) {
CircularProgressIndicator(color = MaterialTheme.colors.primary)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment