我需要创建一个带有装饰的TextFormField-counterText和labelText。我这样做:

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

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

最佳答案

您正在寻找的是 helperText 属性。

关于dart - Flutter TextField对齐,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/48821717/

10-12 02:01