How do I center text vertically and horizontally in Flutter?

后端 未结 8 1321
不思量自难忘°
不思量自难忘° 2020-12-13 05:34

I\'d like to know how to center the contents of a Text widget vertically and horizontally in Flutter. I only know how to center the widget itself using Center(child: T

8条回答
  •  天命终不由人
    2020-12-13 06:00

                           child: Align(
                              alignment: Alignment.center,
                              child: Text(
                                'Text here',
                                textAlign: TextAlign.center,                          
                              ),
                            ),
    

    This produced the best result for me.

提交回复
热议问题