Flutter TextField对齐

时间:2018-02-16 07:09:45

标签: dart flutter textstyle

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

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

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

1 个答案:

答案 0 :(得分:2)

您正在寻找helperText属性。