我正在尝试更改TextFromField
的边框宽度,但无法正常工作。
这是我下面的代码。
TextFormField(
decoration: InputDecoration(
border: OutlineInputBorder(
borderSide: new BorderSide(color: Colors.white,width:2)),
fillColor: Colors.white,
labelText: 'Enter your username or email address'
),
),
答案 0 :(得分:2)
您应该使用enableBorder
。尝试这样的事情
TextFormField(
decoration: InputDecoration(
enabledBorder: OutlineInputBorder(
borderSide: new BorderSide(color: Colors.red, width: 10)),
fillColor: Colors.white,
labelText: 'Enter your username'),
)
参考此处: