Ayfri
09/05/2021, 11:40 AMRow
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 ?Albert Chang
09/05/2021, 12:14 PMRow(horizontalArrangement = Arrangement.SpaceBetween) {
// Boxes
}
Ayfri
09/05/2021, 12:14 PMFudge
09/05/2021, 1:35 PMRow{
Thing1()
Spacer(Modifier.weight(1f))
Thing2()
}