Answers for "flutter more space"

4

give spacing in flutter

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

flutter widget for space

SizedBox widget can be use in between two widget to add space between two widget
and it makes code more readable than padding widget.

Column(
  children: <Widget>[
    Widget1(),
    SizedBox(height: 10),
    Widget2(),
  ],
),
Posted by: Guest on March-15-2021

Code answers related to "flutter more space"

Code answers related to "Dart"

Browse Popular Code Answers by Language