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
You can solve this problem in different way.
If you use Row/Column then you have to use mainAxisAlignment: MainAxisAlignment.spaceEvenly If you use Wrap Widget you have to use runSpacing: 5, spacing: 10, In anywhere you can use SizeBox()
If you use Row/Column then you have to use mainAxisAlignment: MainAxisAlignment.spaceEvenly
If you use Wrap Widget you have to use runSpacing: 5, spacing: 10,
In anywhere you can use SizeBox()