Answers for "flutter top margin on column"

3

flutter vertical space between containers

Column(
  children: <Widget>[
    Widget1(),
    SizedBox(height: 10),
    Widget2(),
  ],
),
Posted by: Guest on July-22-2020
0

column each child padding

Wrap(
  spacing: 20, // to apply margin in the main axis of the wrap
  runSpacing: 20, // to apply margin in the cross axis of the wrap
  children: <Widget>[
     Text('child 1'),
     Text('child 2')
  ]
)
Posted by: Guest on August-14-2020

Code answers related to "Dart"

Browse Popular Code Answers by Language