Hi, in a `Row` I have two boxes, is there a way to...
# compose-desktop
a
Hi, in a
Row
I have two boxes, is there a way to set the second box to the right side of the screen while keeping the first in the left side ?
a
Copy code
Row(horizontalArrangement = Arrangement.SpaceBetween) {
    // Boxes
}
K 4
a
oooh okay nice, thanks !
f
Alternatively
Copy code
Row{
Thing1()
Spacer(Modifier.weight(1f))
Thing2()
}
👍 2