I am investigating Android Jetpack Compose in my current Android application.
I wish to have the main screen contain a backdrop and show selected options on the front layer.
I also require my application to support Dark Mode.
It seems to me that I must employ both androidx.compose.material3.MaterialTheme
& androidx.compose.material.MaterialTheme
to theme my application.
This is because androidx.compose.material.BackdropScaffold
is a material component, which means it ignores my androidx.compose.material3.MaterialTheme
values.
however i would like my application to take advantage of Material components as much as possible.
Is it possible to configure multiple MaterialTheme
(s) in this case?
Do I have to wait for a Material3
version of BackdropScaffold
?