Created
March 24, 2021 15:25
-
-
Save AdamMc331/27c6e95d52068b665eb465dd082eb9af to your computer and use it in GitHub Desktop.
Day/Night Jetpack Compose Preview template. I called this `dayNightPrev`.
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
// NOTES: This doesn't help you import it into Intellij, I don't have the time to write that up right now, but if you know how | |
// to create your own live template, you can copy and paste the below. | |
@Preview( | |
name = "Night Mode", | |
uiMode = Configuration.UI_MODE_NIGHT_YES, | |
) | |
@Preview( | |
name = "Day Mode", | |
uiMode = Configuration.UI_MODE_NIGHT_NO, | |
) | |
@Composable | |
private fun $VAR$Preview() { | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment