Nat Strangerweather
11/01/2023, 6:04 PMRow( modifier = GlanceModifier.fillMaxSize()){}
But that gives me a transparent background. If I add a background
modifier, I have to hardcode my color. My Buttons
in the Row
are Material You when I don't hardcode a color.Chrimaeon
11/01/2023, 6:33 PMMaterialTheme
? you can use MaterialTheme.colorScheme.background
if you initialized the Theme with dynamic colors.
https://developer.android.com/jetpack/compose/designsystems/material3Nat Strangerweather
11/01/2023, 6:36 PMChrimaeon
11/01/2023, 9:43 PMbbade_
11/03/2023, 6:26 PMNat Strangerweather
11/04/2023, 9:33 AMGlanceTheme.colors.primaryContainer
and to wrap my widget in GlanceTheme {}
.