- Flutter Widget Livebook

Column

A widget that displays its children in a vertical array.

Example

Column(
  children: <Widget>[
    Text('Deliver features faster'),
    Text('Craft beautiful UIs'),
    Expanded(
      child: FittedBox(
        fit: BoxFit.contain, // otherwise the logo will be tiny
        child: const FlutterLogo(),
      ),
    ),
  ],
)

Related Links

  1. Example
  2. Related Links