Is there a way to use detectDragGestures and then having some kind of hoverable that hovers even when detectDragGestures is being triggered? This usecase doesnt seem feasible because (correct me if im wrong), detectDragGestures consumes all others pointerevents so the hoverable() is not called because of the consumption. I have tried using onGloballyPositioned (soo many problems😅) and then detecting if boundsRect contains the dragOffset provided. The problem with this approach is you can't stack composables (or even if they overlap), because dragOffset is contained in the 2 bound rects. The ideal thing here would be to detect which one is on top (if only on globally positioned provided z axis). But the easier implementation would be the first one without consumption, because this problem ive describe wouldnt occur.