Lucien Guimaraes
05/05/2021, 11:26 AMScaffold
with a BottomNavigation
, in one of the screen I have a view that can display a ModalBottomSheetLayout
. How to display the bottomsheet on top of the BottomNavigation
? Even if the default elevation of bottomSheet > bottomNavigation, it's not displaying on top of it.Se7eN
05/05/2021, 11:30 AMScaffold
inside the `ModalBottomSheetLayout`:
ModalBottomSheetLayout(...) {
Scaffold(bottomBar = { ... }) {
...
}
}
Lucien Guimaraes
05/05/2021, 11:42 AMSe7eN
05/05/2021, 11:47 AMbottomBar
and create your bottom bar as a sibling to the ModalBottomSheetLayout