You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
When we do a quick clicking on the drawer icon, the drawer won't open anymore.
I think the problem is in this part of the code
val drawerOpen by viewModel.drawerShouldBeOpened.collectAsState()
if (drawerOpen) {
// Open drawer and reset state in [VM.]
LaunchedEffect(Unit) {
drawerState.open()
viewModel.resetOpenDrawerAction()
}
}