How do I center text vertically and horizontally in Flutter?

后端 未结 8 1316
不思量自难忘°
不思量自难忘° 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:04

    Put the Text in a Center:

    Container(
          height: 45,
          color: Colors.black,
          child: Center(
            child: Text(
                'test',
                style: TextStyle(color: Colors.white),
            ),
          ),
        );
    

提交回复
热议问题