jsd*_*ell 8 textfield dart flutter
我无法删除 TextField 的阴影和背景,这是我的代码:
TextFormField(
decoration: InputDecoration.collapsed(),
validator: (input) =>
input == "" ? 'The task is empty' : null,
onSaved: (input) => task = input,
)
Run Code Online (Sandbox Code Playgroud)
这是我想要的结果
我总是尝试 BoxDecoration 但没有成功,因为不与 TextFormField 兼容。
Sam*_*h.K 33
您应该将填充设置为 true。
TextField(decoration: InputDecoration( fillColor: Colors.red, filled: true)),
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
13699 次 |
| 最近记录: |