FlowPanel component expand with minimum width?

I’d like to have a FlowPanel component that expands to fill the available width but never gets narrower than a specified minimal width (similar to how DataRowPanels work within a DataGrid). Do I understand correctly that FlowPanel components (currently) can either specify “expand” or a width, but not both?

As a workaround, I’m considering trying to rig up a DataRowPanel.

What I want is a layout with fixed-width columns on left and right but an expandable column (of minimal width) in the middle. And I’d like these to wrap on mobile (ideally with both side columns below the middle column, though I’m thinking that would require a custom solution so I’m looking for an easier way to begin with).

1 Like

Nevermind, all I need to do is give the component within the FlowPanel a min-width (and simplify things by using two columns rather than three).

4 Likes