Is there a `Modifier` that tracks drag/pointer act...
# compose
a
Is there a
Modifier
that tracks drag/pointer actions without affecting or being affected by composables further down the tree that would consume those actions?
Modifier.pointerInteropFilter()
blocks events from all children, and
Modifier.pointerInput()
seems to not be called if children have already consumed the drag event.