I’ve a `ModalBottomSheet` with scrim as `Transpare...
# compose-android
t
I’ve a
ModalBottomSheet
with scrim as
Transparent
. Is there anyway I can ignore the “click on screen to dismiss”? I would like to click the items behind the Sheet
i
Modal means you need to interact with it before you can interact with the content below it. It sounds like you don't want a modal dialog at all, but a standard bottom sheet: https://developer.android.com/reference/kotlin/androidx/compose/material3/package-summary#BottomSheetScaffold(kotlin.[…]hics.Color,kotlin.Function1)
t
Oh, makes total sense haha. I'll give it a try. Thanks @Ian Lake!