Hi, all. I'm trying to figure out how to make a Ro...
# compose
d
Hi, all. I'm trying to figure out how to make a Row be composed of an IconButton at the start and end and have a TextField between them that 1) fills the space without pushing either button off the screen and 2) does not get any wider as text is entered. When I use:
Copy code
modifier = Modifier.fillMaxWidth()
then the button on the right gets pushed off the screen.
e
Modifier.weight(1f)
on the text field
👍 1
d
That worked, thank you!
👍 1