flutter widget for space code example
Example: 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(),
],
),