Reputation: 743
CrossAxisAlignment.center never working in Column.
My code:
body: Column(
crossAxisAlignment: CrossAxisAlignment.center,
children: <Widget>[
Text('Hello word')
],
),
Upvotes: 1
Views: 48
Reputation: 10244
Try wrapping the column with SizedBox.expand(
SizedBox.expand((
child: Column(
children: <Widget>[ Text('Hello word') ],
),
)
Upvotes: 1