Skip to content

Instantly share code, notes, and snippets.

@widiarifki
Created August 31, 2021 02:08
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/b253e3273328fd9a7d4ec06e8027dd00 to your computer and use it in GitHub Desktop.
Save widiarifki/b253e3273328fd9a7d4ec06e8027dd00 to your computer and use it in GitHub Desktop.
@Composable
fun EmptyState(modifier: Modifier = Modifier) {
Box(modifier = modifier.fillMaxWidth(), contentAlignment = Alignment.Center) {
Text(
text = "Yah, belum ada item belanja!",
style = MaterialTheme.typography.h5,
textAlign = TextAlign.Center
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment