How can I achieve this? The blue box needs to fill...
# compose
m
How can I achieve this? The blue box needs to fill remaining space after placing those 3 boxes I tried with Column and ConstraintLayout as well Code in 🧵
👍 1
a
No need to use
ConstraintLayout
. Using a
Column
and setting
Modifier.weight(1f)
on the third
Box
should be enough.
5
💡 3