Skip to content

Instantly share code, notes, and snippets.

@Norbert515
Created July 26, 2018 07:57
Show Gist options
  • Select an option

  • Save Norbert515/2490319a8f32ce5212afc501a852220d to your computer and use it in GitHub Desktop.

Select an option

Save Norbert515/2490319a8f32ce5212afc501a852220d to your computer and use it in GitHub Desktop.
columns inside columns
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