Space between Column's children in Flutter

后端 未结 14 821
刺人心
刺人心 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:29

    Column(
      children: [
        FirstWidget(),
        Spacer(),
        SecondWidget(),
      ]
    )
    

    Spacer creates a flexible space to insert into a [Flexible] widget. (Like a column)

提交回复
热议问题