如何删除 Flutter Widget 上 TextField 的背景颜色?

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)