I have a Column widget with two TextField widgets as children and I want to have some space between both of them.
Column
TextField
I already tried mainAxi
mainAxi
Column(children: [ Container(margin: EdgeInsets.only(top:12, child: yourWidget)), Container(margin: EdgeInsets.only(top:12, child: yourWidget)) ]);