How would I go about making a custom constraint la...
# doodle
a
How would I go about making a custom constraint layout?
n
depends on the context.
GridPanel
takes a lambda like this for cellAlignment.
Copy code
cellAlignment = {
  it.center eq parent.center
  …
}
but you can also create custom constraint layouts as described in the docs. this is all i meant.