Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Select an option

  • Save widiarifki/7a6c4608ae635c53a07944a2eda9c54b to your computer and use it in GitHub Desktop.

Select an option

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