Skip to content

Instantly share code, notes, and snippets.

@skydoves
Last active August 9, 2024 11:40
Show Gist options
  • Save skydoves/8892db6f372491dd9689af305ce95c23 to your computer and use it in GitHub Desktop.
Save skydoves/8892db6f372491dd9689af305ce95c23 to your computer and use it in GitHub Desktop.
preview_annotation
@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