Column
Column is a widget in Flutter that arranges its children vertically in a single column. It allows for flexible and responsive display of information in a structured format.
An example of Column usage is:
Column(
children: <Widget>[
Text('First'),
Text('Second'),
Text('Third'),
],
)
This would display the three Text widgets in a single column, with each widget below the previous one.