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: [ FirstWidget(), Spacer(), SecondWidget(), ] )
Spacer creates a flexible space to insert into a [Flexible] widget. (Like a column)