颤振中心包装的文字

时间:2018-12-04 16:47:00

标签: flutter

在Flutter中,可以将换行的文本居中吗?

我坚持下去

wrapped text

实际上,我希望文本能自动换行但仍居中。

enter image description here

1 个答案:

答案 0 :(得分:5)

您可以只使用textAlign属性

Text(
    "The quick brown fox jumps over the lazy dog",
    textAlign: TextAlign.center,
    style: TextStyle(fontSize: 20.0),
  )