我正在尝试更改TextFromField边框的宽度,但是它不起作用。

这是下面的代码。

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

最佳答案

您应该使用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

关于flutter - 无法更改TextFormField边框宽度,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/61276326/

10-09 16:22