anyone had problems with clicking on content, when...
# compose
p
anyone had problems with clicking on content, when using
BottomDrawer
?
Copy code
@Composable
fun Screen() = Scaffold {
    BottomDrawer(
        drawerContent = { DrawerContent() },
        content = { ScreenContent() },
    )
}
I have a button on ScreenContent, and it's not getting click events
For some reason I had to wrap content into column:
Copy code
content = {
    Column {
        Button()
        Button()
    }
}
This doesn't work:
Copy code
content = {
    Button()
    Button()
}