A widget that displays its children in a vertical array.
Example
Column(
children:<Widget>[Text('Deliver features faster'),Text('Craft beautiful UIs'),Expanded(
child:FittedBox(
fit: BoxFit.contain,// otherwise the logo will be tiny
child:constFlutterLogo(),),),],)