Hi how can I detect touch event in compose without...
# compose
g
Hi how can I detect touch event in compose without consume the event? For example,
Copy code
Box1(){
   Box2(){
   }
}
If there are two boxes in the screen, how can I detect touch event in Box1 but consume the event in Box2?
actually I want to detect if user touch the screen in the outer box, any idea to do that?