Created
October 2, 2021 19:40
-
-
Save devDeejay/ea4357df5505676cd66874ba731f79a9 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
// 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