xxxxxxxxxx
Container(
constraints: BoxConstraints(
minWidth: 100, // Minimum width for the container
maxWidth: 200, // Maximum width for the container
minHeight: 50, // Minimum height for the container
maxHeight: 100, // Maximum height for the container
),
child: Text('Hello, Flutter!'),
)