Colton Idle
10/16/2023, 3:10 PM"parent will divide the vertical space remaining after measuring"All I want to do is something like
Column(fillMaxHeight){
Box(height(percent = 50))
Box(height(percent = 50))
}
cah
10/16/2023, 3:17 PMIan Lake
10/16/2023, 3:36 PMColton Idle
10/16/2023, 4:14 PMIan Lake
10/16/2023, 4:19 PMColton Idle
10/16/2023, 4:21 PMColumn(fillMaxHeight){
Box(weight(1f))
Box(weight(1f))
}
just because i was worried about the whole "parent will divide the vertical space remaining after measuring"
So like. if it goes to layout the first box and it takes up 60% of the space because it has a bunch of tall content (idk, like a lot of text?) would that mean that you'd get less space in the second box.Ian Lake
10/16/2023, 4:26 PMColton Idle
10/16/2023, 4:31 PM