Created
October 2, 2021 19:40
Revisions
-
devDeejay created this gist
Oct 2, 2021 .There are no files selected for viewing
This file contains hidden or 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 charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,13 @@ // 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") }