Is there a way to place items in column starting f...
# compose
b
Is there a way to place items in column starting from the bottom? In my case I have a bottom bar and content that has to fill all the rest of the screen, but when I put them into column starting content the this content fullfil a whole screen and bottom bar is not visible, how to layout it properly? Use ConstraintLayout?
a
Maybe add
Spacer(modifier = Modifier.fillMaxSize(weight = 1f))
Before the column