Is there some nice way to pass `pointerEvent` from...
# compose
z
Is there some nice way to pass
pointerEvent
from parent to child composable, even if this
pointerEvent
is not within child layout bounds? I have a custom modifier applied to a child composable where it relies on
detectTransformGestures
, the problem is it requires all `pointerEvent`s to be within child layout bounds. I would like to modify it, so once dragging starts then I can also transform it with touch inputs outside this composable.