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
Try this one. It centers vertically and horizontally.
Center( child: Column( mainAxisAlignment: MainAxisAlignment.center, children: children, ), )