无法更改TextField边框颜色
我想改变我的边框颜色TextField使用BorderSide,但它不是不工作。 这是我的下面的代码。 new TextField( decoration: new InputDecoration( border: new OutlineInputBorder( borderSide: new BorderSide(color: Colors.teal) ), hintText: 'Tell us about yourself', helperText: 'Keep it short, this is just a demo.', labelText: 'Life story', prefixIcon: const Icon(Icons.person, color: Colors.green,), prefixText: ' ', suffixText: 'USD', suffixStyle: const TextStyle(color: Colors.green)), ) ) 结果的屏幕截图如下所示。