I'm using a draggable composable that use `onGloba...
# compose
t
I'm using a draggable composable that use
onGloballyPositioned
to get the composable position.
Copy code
var mySourcePosition by remember { mutableStateOf(Offset.Zero) }

.onGloballyPositioned {
	mySourcePosition = it.localToWindow(Offset.Zero)
}
But when used in LazyGrid the ``onGloballyPositioned` `is on a rare occasion not called. What would be the proper way to always have up to date object position without the draggable composable being aware that it's in a lazylayout?