I have a Row with elements with different heights. How can I say, that one row element should have t...
j
I have a Row with elements with different heights. How can I say, that one row element should have the max. available height of the Row (i.e. the maximum of inner element heights)? Something like "matchParentHeight".
Copy code
Row {
    Column() { ... }
    Column(Modifier.matchParentHeight()) { ... }
}
n
Have you tried
fillMaxHeight()
modifier? 🤔