How can make Compose ignore pointer events and pas...
# compose
r
How can make Compose ignore pointer events and pass events to the elements below? I want top() not to consume any events
Copy code
Box {
  content()
  top()
}
l
Not currently. I think there could be an
Modifier.pointerEventInterceptor
that stops pointer events being propagated to the inner (down the modifier chain, into the content of this composable). This requires changes to the internal.