-
-
Save skydoves/8892db6f372491dd9689af305ce95c23 to your computer and use it in GitHub Desktop.
preview_annotation
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(name = "light mode") | |
@Preview(name = "dark mode", uiMode = Configuration.UI_MODE_NIGHT_YES) | |
@Composable | |
private fun MyPreview() { | |
MaterialTheme { | |
Text( | |
text = "Lorem ipsum dolor sit amet, consectetur adipiscing elit.", | |
color = if (isSystemInDarkTheme()) { | |
Color.White | |
} else { | |
Color.Yellow | |
} | |
) | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment