Skip to content

Instantly share code, notes, and snippets.

@xrnd
Created July 1, 2018 15:49
Show Gist options
  • Select an option

  • Save xrnd/7fceea1d22854caeabb7f90b91b3a40a to your computer and use it in GitHub Desktop.

Select an option

Save xrnd/7fceea1d22854caeabb7f90b91b3a40a to your computer and use it in GitHub Desktop.
the column widget from flutter
new Column(
crossAxisAlignment: CrossAxisAlignment.stretch,
mainAxisSize: MainAxisSize.min,
mainAxisAlignment: MainAxisAlignment.spaceEvenly,
children: <Widget>[
new Text('Column child No 1'),
new Text('Column child No 2'),
new Text('Column child No 3'),
new Text('Column child No 4'),
new Text('Column child No 5'),
new Text('Column child No 6'),
],
),
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment