Component - Column and Row
The Column and Row widgets arrange child widgets vertically and horizontally, respectively. They help organize the screen layout by stacking items in a line either top-to-bottom (Column) or left-to-right (Row).
The Column and Row widgets arrange child widgets vertically and horizontally, respectively. They help organize the screen layout by stacking items in a line either top-to-bottom (Column) or left-to-right (Row).
Scaffold
├── AppBar
└── body: Column
├── Text
├── Row
│ ├── Icon
│ ├── Text
│ └── Icon
└── ElevatedButton