I been dealing with some Material 3 Bottom Sheet i...
# compose-android
d
I been dealing with some Material 3 Bottom Sheet issues, upon hiding the sheet sometimes the layout is still visible in the background and prevents users from any input until they navigate back. We've implemented it in the recommended fashion, but after some debugging we've found out that sometimes when hiding the sheet,
sheetState.isVisible
return `true`🤯, and thus never removing the sheet. Anyone have the slightest idea why this check is in place to begin with? 🤔
n
Yeah, I encountered this issue in one of my apps. The sheet is displayed when the user hits some button and this issue occurs when the user taps on the button multiple times quickly. I hope to find a way to fix it.