Flutter Sizedbo
const SizedBox(
width: 200.0,
height: 300.0,
child: Card(child: Text('Hello World!')),
)
//Use instead of container, improves performance if you don't need to use all the properties of containser
Steve