【发布时间】:2019-08-24 14:19:50
【问题描述】:
我有一个TextField(),我想更改 Underlineinput border color 和它的 thickness,因为它看起来像厚度。我已经尝试过我的水平来改变它,但它根本不起作用。
我已经关注了这些链接,但对我没有任何帮助:
- InputDecoration class in flutter
- InputBorder class in flutter
- To change the color of the underline of textfield
到目前为止尝试过的是:
代码:
decoration: InputDeocration(
border: UnderlineInputBorder(
borderSide: new BorderSide(
color: Color.fromRGBO(173, 179, 191, 1),
width: 0.5,
style: BorderStyle.none
)
)
)
这里唯一起作用或改变颜色的是focussedBorder和enabledBorder。我不想要这个,所以我期待在这里得到一些好的建议。
它不会改变任何东西。 我想要的是:
到目前为止,无论我对设计所做的更改如何,我都得到了这样的结果:
【问题讨论】:
标签: flutter uitextfield