Hello! How can I display a snackbar on bottom of t...
# compose
r
Hello! How can I display a snackbar on bottom of the screen when bottom sheet is displayed? I have tried many solutions, but none of them is working - all the time snackbar is displayed behind the bottom sheet. Bottom sheet I’m using is ModalBottomSheet provided by Material3. Is there anything scaffold specific I need to use to display snackbar in any situation?
I think it should work if I’m using Box composable and put the snackbar after the bottom sheet so that it’s displayed in front, but it doesn’t work like that.
d
Try adding a
.zIndex(1f)
Modifier to the
SnackBarHost
.
207 Views