What is the proper way to have a bottomsheet shown...
# compose
t
What is the proper way to have a bottomsheet shown over the navigation bar from a subscreen ?
1
c
We managed to do that by having placed the subscreens above the navigation bar, but put a padding inside so they do not cover it. Then we could show the bottom sheet from them, but those do not have the padding, so they cover the bottom nav.
t
Thanks, nice workaround, would be a little complex for me as I also have a mini player bar that can expand above the subscreens 😞 I've seen others pushing the bottomsheet content as with a stateflow<Composable>. This works nicely but does not support process death.