Launch offer
Business website $150 USD Custom plugin $200 USD Ready in 5 days
Get a quote
Flutter

Row and Column in Flutter

Lay out children horizontally (Row) or vertically (Column).

Row and Column in Flutter — a practical guide to Flutter Row Column with clear examples you can reuse in real projects.

Flutter Tutorial Series (33/107). Prefer one article? Read the complete Flutter tutorial.

Short description

Control alignment with mainAxisAlignment and crossAxisAlignment; wrap flex children in Expanded/Flexible.

Column

Column(
  crossAxisAlignment: CrossAxisAlignment.start,
  children: const [
    Text('Title'),
    Text('Subtitle'),
  ],
);

Leave a reply

Your email address will not be published. Required fields are marked *