- Flutter Widget Livebook

SizedBox

A box with a specified size.

Example

SizedBox(
  width: 200.0,
  height: 300.0,
  child: const Card(child: Text('Hello World!')),
)

Related Links

  1. Example
  2. Related Links