Flutter TextField align



我需要创建带有装饰的TextFormField -ountertext和labEltext。我这样做:

new TextFormField(
  decoration: new InputDecoration(
      counterText: "some text",
      labelText: header),
);

一切正常,除了我需要将计数器文本向左移动,但默认情况下,它在右侧。如何更改它?我知道有counterStyle参数,但我不知道如何使用它来实现向左移动文本。

它是您要寻找的 helperText属性。

相关内容

  • 没有找到相关文章

最新更新