xxxxxxxxxx
ConstrainedBox(
constraints: BoxConstraints(minWidth: 200), // Set the minimum width here
child: YourWidget(),
)
xxxxxxxxxx
Container(
constraints: BoxConstraints(
maxWidth: 500, // Set your desired maximum width value
),
child: YourWidget(),
),