Flutter : Vertically center column

后端 未结 9 580
失恋的感觉
失恋的感觉 2020-12-13 23:02

How to vertically center a column in Flutter? I have used widget \"new Center\". I have used widget \"new Center\", but it does not vertically center my column ? Any ideas w

9条回答
  •  攒了一身酷
    2020-12-13 23:36

    Try this one. It centers vertically and horizontally.

    Center(
      child: Column(
        mainAxisAlignment: MainAxisAlignment.center,
        children: children,
      ),
    )
    

提交回复
热议问题