In Flutter, is it possible to center text that is wrapped?
I'm stuck with
In effect, I want the text to wrap but still be centered.
You can just use textAlign
property
Text(
"The quick brown fox jumps over the lazy dog",
textAlign: TextAlign.center,
style: TextStyle(fontSize: 20.0),
)
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With