Hello! How can I make Box width same as height (he...
# compose
p
Hello! How can I make Box width same as height (height is calculated by children)?
f
You could try Aspect ratio modifier
Attempts to size the content to match a specified aspect ratio by trying to match one of the incoming constraints in the following order:
Constraints.maxWidth
,
Constraints.maxHeight
,
Constraints.minWidth
,
Constraints.minHeight
if
matchHeightConstraintsFirst
is
false
(which is the default), or
Constraints.maxHeight
,
Constraints.maxWidth
,
Constraints.minHeight
,
Constraints.minWidth
if
matchHeightConstraintsFirst
is
true
.