<div class='type'>Interface</div>


<a id='references'></a>

<div class='sourceset sourceset-common'>Common</div>



```kotlin
@JvmDefaultWithCompatibility
interface OnGloballyPositionedModifier : Modifier.Element
```


A modifier 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.


## Functions



<h2 id="ongloballypositioned-coordinates">onGloballyPositioned</h2>

```kotlin
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.