📅  最后修改于: 2022-03-11 14:57:31.260000             🧑  作者: Mango
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: [
Widget1(),
SizedBox(height: 10),
Widget2(),
],
),