17

In Flutter, is it possible to center text that is wrapped?

I'm stuck with

wrapped text

In effect, I want the text to wrap but still be centered.

enter image description here

Nate Roiger
  • 325
  • 2
  • 7

1 Answers1

45

You can just use textAlign property

Text(
    "The quick brown fox jumps over the lazy dog",
    textAlign: TextAlign.center,
    style: TextStyle(fontSize: 20.0),
  )
diegoveloper
  • 93,875
  • 20
  • 236
  • 194