How can I achieve this? The blue box needs to fill remaining space after placing those 3 boxes I tri...
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