Is there a layout that my three elements use the f...
# compose-desktop
s
Is there a layout that my three elements use the full width but the left and right have the width with content wraped and the mid will fill the space left in the middle?
t
Like this?
Copy code
Row {
    FirstElement()
    SecondElement(modifier = Modifier.weight(1f))
    ThirdElement()
}
s
Yes. That works. Thank you