Skip to content

Instantly share code, notes, and snippets.

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

  • Save xrnd/6df8b198d6f9eac7b96e79943f9c9773 to your computer and use it in GitHub Desktop.

Select an option

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