What’s Column?

Column class: A widget that displays its children in a vertical array.

Check the official documentation for more.

Column explained for Web Developers

The Column widget does not scroll and is considered an error to have more children than will fit in the available room. If you want the children to scroll, consider using a ListView.

Example Code

Here is an example of how to use Column:

const Column(
children: [
Text('Deliver features faster'),
Text('Craft beautiful UIs'),
Expanded(
child: FittedBox(
child: FlutterLogo(),
),
),
],
)

Column Remarks

To avoid overflow issues, ensure that the Column widget is used within a context that provides bounded vertical constraints.

Bootstrap Your app with ShipFlutter

A fully customizable starter kit to seamlessly launch responsive Android, iOS, and Web apps with Flutter powered by Firebase and Vertex AI.