如何在 Flutter 中的文本字段中包装提示文本?

Ano*_*onk 7 textfield flutter

hintStyle 属性似乎不包含任何让我表示提示文本应该换行的内容。我的文本字段中的实际文本会自动换行。如何包装提示文本?

Sam*_*h.K 0

我通过在 TextField 上使用 maxLines 来修复它

  TextField(  textAlign: TextAlign.center,
              maxLines: 2,
              decoration: InputDecoration(hintText: "Your Hint Your Hint Your Hint Your Hint Your Hint Your Hint")),
Run Code Online (Sandbox Code Playgroud)