无法更改TextFormField边框宽度

时间:2020-04-17 16:29:33

标签: flutter dart

我正在尝试更改TextFromField的边框宽度,但无法正常工作。

这是我下面的代码。

TextFormField(
   decoration: InputDecoration(
                border: OutlineInputBorder(
                borderSide: new BorderSide(color: Colors.white,width:2)),
                fillColor: Colors.white,
                labelText: 'Enter your username or email address'
                ),
),

1 个答案:

答案 0 :(得分:2)

您应该使用enableBorder。尝试这样的事情

TextFormField(
          decoration: InputDecoration(
              enabledBorder: OutlineInputBorder(
                  borderSide: new BorderSide(color: Colors.red, width: 10)),
              fillColor: Colors.white,
              labelText: 'Enter your username'),
        )

参考此处:

InputDecorarion Class Documentation

BorderSide Class Documentation