How do I center text vertically and horizontally in Flutter?
Text alignment center property setting only horizontal alignment.
I used below code to set text vertically and horizontally center.
Code:
child: Center(
child: Text(
"Hello World",
textAlign: TextAlign.center,
),
),
You can use TextAlign
property of Text
constructor.
Text("text", textAlign: TextAlign.center,)