What should be used to couple some composables tog...
# compose
h
What should be used to couple some composables together? If you have a text field and two buttons, and you want those to expand full ColumnRow when the screen resizes. I'm working on a Desktop application and when you resize the window, would like it still to show correctly. What I'm also looking for is to set a minimum width and height for resizing of the window.
I mean I can put the TextField and Buttons in a Column (Row) directly or wrap them in something like a Card, or Surface, Box etc. What is more common to use?