我在https://material.io/design/components/text-fields.html上看到了这个填充的文本字段 但是我不知道怎么做?
答案 0 :(得分:1)
好的, 对于第一个示例,您可以使用以下代码段:
TextField(
obscureText: false,
decoration: InputDecoration(
border: UnderlineInputBorder(),
labelText: 'Password',
),
)
在第二个示例中,使用代码段如下:
TextField(
obscureText: false,
decoration: InputDecoration(
border: OutlineInputBorder(),
labelText: 'Password',
),
)
希望这会有所帮助。
有关更多详细信息和扩展功能,您可以在此处查看文档:{{3}}