我试图定义输入装饰以更改输入文本字段的下划线颜色。但它不起作用。有人能告诉我这里缺少什么吗?
下面是代码段:
decoration: InputDecoration(
hintText: 'Username',
hintStyle: TextStyle(color: Colors.white),
border: new UnderlineInputBorder(
borderSide: BorderSide(color: Colors.white,
width: 1.0, style: BorderStyle.none ),
),
最佳答案
decoration: InputDecoration(
hintText: 'Username',
hintStyle: TextStyle(color: Colors.white),
enabledBorder: new UnderlineInputBorder(
borderSide: BorderSide(color: Colors.white,
width: 1.0, style: BorderStyle.none ),
),
只需将“border”更改为“enabledBorder”。希望能帮上忙!
关于flutter - 如何在flutter中更改textField的下划线颜色?,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/51373884/