Skip to content

Instantly share code, notes, and snippets.

@KatieBarnett
Last active October 29, 2024 09:29
Show Gist options
  • Save KatieBarnett/27c0f401e42847e475d7f561ddb925f6 to your computer and use it in GitHub Desktop.
Save KatieBarnett/27c0f401e42847e475d7f561ddb925f6 to your computer and use it in GitHub Desktop.
GlanceTheme with dynamic colors
@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