I have 3 composables need to be laid out in a colu...
# compose
d
I have 3 composables need to be laid out in a column. I need one aligned to the top. I need one aligned to the bottom. And I need one in between that takes up the rest of the available space. How would one achieve that? Perhaps the
BoxWithConstraints()
?
h
Copy code
Column {
  TopAlignedComposable()
  MiddleComposable(modifier = Modifier.weight(1f))
  BottomAlignedComposable()
}
6
👍 4
d
@Halil Ozercan OMG Thank you! I really got to read the options available in the modifiers! This is awesome!