mducc
mducc

Reputation: 743

CrossAxisAlignment.center never working in Column

CrossAxisAlignment.center never working in Column.

My code:

body: Column(
        crossAxisAlignment: CrossAxisAlignment.center,
        children: <Widget>[
          Text('Hello word')
        ],
      ),

Upvotes: 1

Views: 48

Answers (1)

Manoj Perumarath
Manoj Perumarath

Reputation: 10244

Try wrapping the column with SizedBox.expand(

SizedBox.expand((
child: Column(
children: <Widget>[ Text('Hello word') ],
),
)

Upvotes: 1

Related Questions