Space between Column's children in Flutter

后端 未结 14 800
刺人心
刺人心 2021-02-02 04:33

I have a Column widget with two TextField widgets as children and I want to have some space between both of them.

I already tried mainAxi

14条回答
  •  粉色の甜心
    2021-02-02 05:31

    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()

提交回复
热议问题