Skip to content

Instantly share code, notes, and snippets.

@devDeejay
Created October 2, 2021 19:40
Show Gist options
  • Save devDeejay/ea4357df5505676cd66874ba731f79a9 to your computer and use it in GitHub Desktop.
Save devDeejay/ea4357df5505676cd66874ba731f79a9 to your computer and use it in GitHub Desktop.
// Preview Annotation with name for Light Mode
@Preview(name = "Light Mode")
// Adding another Preview annotation for Dark Mode
@Preview(
uiMode = Configuration.UI_MODE_NIGHT_YES,
showBackground = true,
name = "Dark Mode"
)
/// Same Function as before
@Composable
fun PreviewGreetUser() {
GreetUser("Medium")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment