<https://developer.android.com/reference/kotlin/an...
# compose-android
c
The documentation for `Row` and `Column` show an
EqualWeight
arrangement in the GIF, but I can't find it… where it is?
s
Equal weight just means using weight(Y) on all items, where Y must be the same number for all items
c
Is there a way to do this as an arrangement?
s
Doubt it, you wouldn’t be able to force the children to take up all the available space, only give them their constraints, but then the child determines how much of the constraints it takes up
c
Thanks for the information.