Created
June 18, 2019 01:43
-
-
Save parse-code/d6ef0becbd196eac12b07810426583e1 to your computer and use it in GitHub Desktop.
[Flutter Layout Cheat Sheet] #Flutter #Layout #Dart
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Row /*or Column*/( | |
mainAxisAlignment: MainAxisAlignment.start, | |
children: <Widget>[ | |
Icon(Icons.star, size: 50), | |
Icon(Icons.star, size: 50), | |
Icon(Icons.star, size: 50), | |
], | |
), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment