如何在Flutter中填充文本框?

时间:2019-08-01 16:43:22

标签: flutter

我在https://material.io/design/components/text-fields.html上看到了这个填充的文本字段 但是我不知道怎么做?

1 个答案:

答案 0 :(得分:1)

enter image description here

好的, 对于第一个示例,您可以使用以下代码段:

TextField(
        obscureText: false,
        decoration: InputDecoration(
          border: UnderlineInputBorder(),
          labelText: 'Password',
        ),
      )

在第二个示例中,使用代码段如下:

TextField(
        obscureText: false,
        decoration: InputDecoration(
          border: OutlineInputBorder(),
          labelText: 'Password',
        ),
      )

希望这会有所帮助。

有关更多详细信息和扩展功能,您可以在此处查看文档:{​​{3}}