如何仅对flutter中的TextField禁用splashColor?

时间:2019-04-09 15:07:52

标签: dart flutter

我正在尝试禁用TextField上的波纹效果。

splashColor: Colors.transparent也消除了对其他小部件的连锁反应。

我只想消除TextField上的涟漪效应。

1 个答案:

答案 0 :(得分:0)

以这种方式尝试,您只需将Theme添加到TextField

Theme(
  data: Theme.of(context).copyWith(splashColor: Colors.transparent),
  child: TextField(),
),