Skip to content

Instantly share code, notes, and snippets.

@vitoksmile
Created February 11, 2025 17:59
Show Gist options
  • Select an option

  • Save vitoksmile/20f4e50167ee72deb8fd6c2ab1174ddb to your computer and use it in GitHub Desktop.

Select an option

Save vitoksmile/20f4e50167ee72deb8fd6c2ab1174ddb to your computer and use it in GitHub Desktop.
ComposeHints
Column(
Modifier.onGloballyPositioned { coordinates ->
// This will be the size of the Column.
coordinates.size
// The position of the Column relative to the application window.
coordinates.positionInWindow()
// The position of the Column relative to the Compose root.
coordinates.positionInRoot()
// These will be the alignment lines provided to the layout (empty here for Column).
coordinates.providedAlignmentLines
// This will be a LayoutCoordinates instance corresponding to the parent of Column.
coordinates.parentLayoutCoordinates
}
) {
Box(Modifier.size(20.dp).background(Color.Green))
Box(Modifier.size(20.dp).background(Color.Blue))
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment