Created
July 26, 2018 07:57
-
-
Save Norbert515/2490319a8f32ce5212afc501a852220d to your computer and use it in GitHub Desktop.
columns inside columns
This file contains hidden or 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
| child: Column( | |
| children: <Widget>[ | |
| Flexible( | |
| flex: 4, | |
| child: new Column( | |
| children: <Widget>[ | |
| // Your children .. | |
| ], | |
| ), | |
| ), | |
| Flexible( | |
| flex: 5, | |
| child: new Column( | |
| children: <Widget>[ | |
| // Your children .. | |
| ], | |
| ), | |
| ), | |
| Flexible( | |
| flex: 1, | |
| child: new Column( | |
| children: <Widget>[ | |
| // Your children .. | |
| ], | |
| ), | |
| ), | |
| ], | |
| ), |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment