How can I show snack bars above a modal drawer? C...
# compose
m
How can I show snack bars above a modal drawer? Currently, the drawer hides the snack bar invoked from the drawer.
m
I don't know if this can work,
modifier = Modifier.zIndex(1000F),
b
Here's how I do it: If you want to share snackbars between your screens & modal drawer, share your scaffoldState to your drawerContent.
Copy code
drawerContent = { DrawerNavigation(userVm, scaffoldState)
To display a separate snackbar for drawer only, create & remember scaffoldState inside of your DrawerNavigation / pass to drawer screens