TextField icon 颜色值根据选中状态进行修改

2021-03-31  本文已影响0人  菜鸟何时起飞
 Theme(
                  child: TextField(
                    controller: _searchQueryController,
                    onChanged: _onTextChanged,
                    style: widget.textStyle,
                    decoration: InputDecoration(
                      icon: widget.icon, /*搜索icon*/
                      border: InputBorder.none,
                      hintText: widget.hintText,
                      hintStyle: widget.hintStyle,
                    ),
                  ),
                  data: Theme.of(context).copyWith(
                    primaryColor: widget.iconActiveColor, //可以修改icon 颜色值
                  ),
                
上一篇 下一篇

猜你喜欢

热点阅读