-
-
Save KatieBarnett/27c0f401e42847e475d7f561ddb925f6 to your computer and use it in GitHub Desktop.
GlanceTheme with dynamic colors
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
@Composable | |
fun MotivateMeGlanceTheme( | |
content: @Composable () -> Unit, | |
) { | |
GlanceTheme( | |
colors = if (Build.VERSION.SDK_INT >= Build.VERSION_CODES.S) { | |
GlanceTheme.colors | |
} else { | |
MotivateMeGlanceColorScheme.colors | |
}, | |
content = { content.invoke() } | |
) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment