<Jetpack Compose – BottomBar is under Bottom Navig...
# stackoverflow
u
Jetpack Compose – BottomBar is under Bottom Navigation I've implemented BottomBar via Scaffold in Jetpack Compose. It works fine with a smartphone with gesture navigation. But when legacy bottom buttons are enabled, the overlap my BottomBar.

screenshot

My code: Scaffold( bottomBar = { BottomMenu() } ) { innerPadding -> Surface( color = AppTheme.colors.background.primary, modifier = Modifier...