Hi folks, When using material3 Modal bottom sheet ...
# compose
r
Hi folks, When using material3 Modal bottom sheet in compose, when I press outside or slide the sheet the close animation is smooth. But when I use state variable to show or hide the sheet, the sheet disappears abruptly. But in material2, we use sheetState.show() or hide() methods which opens or closes the sheet smoothly. Has anyone found/using workaround for this ?
s
You can also hide the m3 sheet with
.hide()
r
Thanks @Stylianos Gakis