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