Hey guys, i'm trying to show the modal bottom shee...
# compose
f
Hey guys, i'm trying to show the modal bottom sheet above the bottom navigation bar
Copy code
val zIndex = if (state.targetValue == ModalBottomSheetValue.Hidden) {
    0f
} else {
    2f
}

ModalBottomSheetLayout(
    modifier = Modifier.navigationBarsPadding().zIndex(zIndex)
it worked on beta03, it doesn't work anymore, is there an issue related to this? My BottomNavigationComposable has a zIndex of 1f
l
Have you resolved your issue ?
f
Nope
i
I dont know if you guys still have this problem, but a solution would be to wrap the Scaffold with the ModalBottomSheetLayout
f
@Igor Maineti I'll try it thanks for the advice!