Flutter - 如何更改 TextField 边框颜色?

Posted

技术标签:

【中文标题】Flutter - 如何更改 TextField 边框颜色?【英文标题】:Flutter - how to change TextField border color? 【发布时间】:2019-11-23 16:22:55 【问题描述】:

我已经尽一切努力尝试更改文本字段的边框颜色,但它似乎被忽略了。

我尝试过sideBorder(甚至宽度也被忽略),hintStyle,仅将特定主题应用于此小部件,它们似乎都被忽略了。

child: new Theme(
      data: ThemeData(
      primaryColor: Colors.white,
      accentColor: Colors.white,
      hintColor: Colors.white //This is Ignored,
      inputDecorationTheme: InputDecorationTheme(
               border: OutlineInputBorder(
               borderSide: BorderSide(color: Colors.white) //This is Ignored
                    ),
                  ),
              ),
      child: new TextField(
             style: TextStyle(color: Colors.white, decorationColor: Colors.white),
             cursorColor: Colors.white,
             decoration: InputDecoration(
             border: new OutlineInputBorder(
             //borderRadius: const BorderRadius.all(Radius.circular(30.0)),
             borderSide: BorderSide(color: Colors.white, width: 0.0) //This is Ignored,
                      ),
                      hintText: "Search people",
                    ),
                  ),
                  //new Divider(color: Colors.white, height: 20),

          )

我想改变那条看起来像黑色的细线边框并改变它的颜色和宽度。

Image of what it currently is

【问题讨论】:

【参考方案1】:

使用enabledBorderfocusedBorder(当文本字段被聚焦时)

InputDecoration(
              enabledBorder: OutlineInputBorder(
                  borderSide: BorderSide(
                      color: Colors.red, width: 5.0),
                  ),
              focusedBorder: OutlineInputBorder(
                  borderSide: BorderSide(
                      color: Colors.blue, width: 3.0),
                  ),
              hintText: "Search people",
            ),

【讨论】:

谢谢,你帮了大忙!!

以上是关于Flutter - 如何更改 TextField 边框颜色?的主要内容,如果未能解决你的问题,请参考以下文章

Flutter中如何同步两个TextField

在 Flutter 中保留方向更改时的 TextField 值

如何在 Flutter 的 TextField 中禁用预测文本?

Flutter ListView 项目根据 TextField 中添加的数字进行更改

在 TextInputType 更改后控制器重置的 Flutter TextField

如何在 Flutter 中使用参数更改英雄动画的持续时间