I have a `Column` inside a `Row`. The `Column` h...
# compose
y
I have a
Column
inside a
Row
. The
Column
has a
Modifier.weight(1f)
inside if which fills the UI with a blank space. Once I add
Modifier.requiredHeight(IntrinsicSize.Min)
to the
Row
, the weight modifier wont work anymore (it will have width of 0. My
IntrinsicSize.Min
is applied to height only, why is it affecting the width of my items? Ill post some code in the thread
This is the code with the InstrictSize modifier (notice how there is no space between the + and STOP buttons)
This is the code & result without the InstrictSize modifier. The space between the two buttons is provided by the weight(1f) modifier but the blue box on the left does not match the height.