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
For me the problem was there was was Expanded inside the column which I had to remove and it worked.
Column( mainAxisAlignment: MainAxisAlignment.center, crossAxisAlignment: CrossAxisAlignment.center, children: [ Expanded( // remove this flex: 2, child: Text("content here"), ), ], )