I have a Column with a set of Expanded widgets.
Is there a way to control the range in which they expand? I want one widget to expand only to a certain size and make
You can use constraint box to use the range of min and max width like below:
Row( children: [ Text("Text 1"), ConstrainedBox( constraints: BoxConstraints(maxHeight: 30, maxWidth: 40, minWidth: 30), ), Text("Text 2") ], )