Pavle Joksovic
12/09/2021, 2:06 PMRow {
ComponentA()
Column(modifier = Modifier.fillMaxSize()){
ComponentB()
}
}
how can I align the ComponentB to bottom right of the Column?
I'm trying to achieve something from the image attachedDaniel Oliveira
12/09/2021, 2:14 PMNikola Drljaca
12/09/2021, 6:20 PMChris Johnson
12/09/2021, 8:11 PMColumn(modifier = Modifier.fillMaxSize(), verticalArrangement = Arrangement.Bottom) {
ComponentB(modifier = Modifier.align(Alignment.End))
}
Columns and Rows also allow alignment in their cross-axis space.Pavle Joksovic
12/10/2021, 8:07 AM