Hello, i'm trying to repliacate a piano keyboard like control. Where you can trigger a "touch" by either tap or drag (from other composable/key).
I'm having problems to mix those 2 as a drag will only inform the callback of the original composable that captured it. (So if you swipe only one key will be "touched")
Is there some alternative? ideally i would love to have an onTouch modifier for every composable but i've been thinking about hoisting all this to an uper layer and detect touches outside of every key, but then i need every child composable reporting sizes and positions wich also haves its problems...
Any insight here? I'm aware of PointerInteropFilter but it's not available on CMP.