Skip to content

Instantly share code, notes, and snippets.

@devDeejay
Created October 2, 2021 19:40

Revisions

  1. devDeejay created this gist Oct 2, 2021.
    13 changes: 13 additions & 0 deletions Activity.kt
    Original 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")
    }