How can I make click listeners further up the hier...
# compose
a
How can I make click listeners further up the hierarchy consume the clicks before the listeners further down the hierarchy react?
Copy code
Box(Modifier.pointerEvent(Unit) { detectTapGestures { /* I want to consume the event */ } }) {
  Box(Modifier.pointerEvent(Unit) { detectTapGestures { /* I want to be ignored */ } }) {
  }
}