📱 Flutter
Beginner
What is the Column widget?
Answer
The Column widget arranges its child widgets vertically in a top-to-bottom sequence. Its main axis is vertical and the cross axis is horizontal. You control alignment using mainAxisAlignment (e.g., center, spaceBetween) and crossAxisAlignment (e.g., start, stretch). By default, Column takes the minimum vertical space needed unless you constrain it. For a horizontal equivalent, use Row.