Sean Proctor
01/23/2024, 11:14 PMDismissibleNavigationDrawer
? 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?Sean Proctor
01/24/2024, 10:12 AMDismissibleNavigationDrawer(...) {
val drawerSize = with(LocalDensity.current) {
360.dp + drawerState.offset.value.roundToInt().toDp()
}
Box(Modifier.padding(end = drawerSize)) {
...
}
}