dimsuz
02/18/2022, 4:12 PMBottomSheetScaffold
it's content
seems to "steal" clicks even if it's empty. View below this scaffold doesn't receive them. is there an option to make them pass through content
?Colton Idle
02/18/2022, 5:09 PMdimsuz
02/18/2022, 5:25 PMandroid.view.ViewGroup
ComposeView {
BottomSheetScaffold(sheetConent = { MySheet() }, content = {})
}
so I don't use content from BSS at all, I want legacy android view to get all the clicks outside of sheet content. And it doesnt work, they get consumed by content
.
Judging from sources, content
gets wrapped in Surface, I suspect it's responsible for consuming all them...Morelflorian35
12/07/2022, 6:06 PMdimsuz
12/07/2022, 8:52 PM