alorma
02/18/2021, 6:14 PMMaterialTheme
, to obtain the light
or dark
version of a MaterialTheme?ComposeDebugDrawer
, configured like this:
DebugDrawerLayout(
drawerColors = YourColorScheme, // darkColors() or lightColors()
)
And I would like to always theme my drawer with the dark variation of the app themejaqxues
02/18/2021, 6:46 PMMaterialTheme
?
MaterialTheme(colors = darkColors()) {
DebugDrawerLayout(...)
}
or similaralorma
02/18/2021, 7:24 PMdarkColors()
without recuesting it as a param ?jaqxues
02/18/2021, 7:25 PMalorma
02/18/2021, 7:29 PMjaqxues
02/18/2021, 7:30 PM