In jetpack compose I have a Lazy column, and for each item I draw a row. Each row consists of two columns. First column is about twice as the other one in height. Now, how is the best way to tell the other column to fill all the row height - so to be equal in height with first column? This is my example code:
LazyColumn() {
items(documents) {
Row {
Column {
Text("One")
Text("Two")
Text("Three")
}
Column(verticalArrangement = Arrangement.SpaceAround) {
Text("One")
}
}
}
}
Modifier.FillMaxHeight() doesn't work. Is far as I understand that's because of using LazyColumn.