Inside a Column, that has 3 elements with 2 of the...
# compose
o
Inside a Column, that has 3 elements with 2 of them having fixed height, how can I let the 3rd fill the remaining space BUT with a max height of x? I tried .heightIn(max = x ) with .weight(1f) but it seems that the max height doesn't seem to affect when weight is specified.
a
if you set
.weight(1f, fill = false)
then the element can be smaller than the weight would initially call for