Does anyone have experience with `DismissibleNavig...
# compose
s
Does anyone have experience with
DismissibleNavigationDrawer
? There seems to be a bug that causes the the right side of the content to be cut off when the drawer is open. Like it's just slid off the right side of the screen. Is this an expected behavior?
To get the behavior I want, I added padding to the content. This still feels like a bug.
Copy code
DismissibleNavigationDrawer(...) {
    val drawerSize = with(LocalDensity.current) {
        360.dp + drawerState.offset.value.roundToInt().toDp()
    }
    Box(Modifier.padding(end = drawerSize)) {
        ...
    }
}