Interface

GlobalPositionAwareModifierNode

A [androidx.

Common
interface GlobalPositionAwareModifierNode : DelegatableNode

A androidx.compose.ui.Modifier.Node whose onGloballyPositioned is called with the final LayoutCoordinates of the Layout when the global position of the content may have changed. Note that it will be called after a composition when the coordinates are finalized.

This is the androidx.compose.ui.Modifier.Node equivalent of androidx.compose.ui.layout.OnGloballyPositionedModifier

Functions

onGloballyPositioned

fun onGloballyPositioned(coordinates: LayoutCoordinates)

Called with the final LayoutCoordinates of the Layout after measuring. Note that it will be called after a composition when the coordinates are finalized. The position in the modifier chain makes no difference in either the LayoutCoordinates argument or when the onGloballyPositioned is called.