This is a dumb one but how can I force the second ...
# compose
j
This is a dumb one but how can I force the second element of a Row to have a minimum height equal to the height of the first element of that Row?
v
I think you can achieve this with
IntrinsicSize
. Something like
Copy code
height(IntrinsicSize.Min)
j
Yes,
height(IntrinsicSize.Max)
on the Row and
fillMaxHeight()
on the second element worked 👍