我正在尝试禁用TextField
上的波纹效果。
splashColor: Colors.transparent
也消除了对其他小部件的连锁反应。
我只想消除TextField
上的涟漪效应。
答案 0 :(得分:0)
以这种方式尝试,您只需将Theme
添加到TextField
Theme(
data: Theme.of(context).copyWith(splashColor: Colors.transparent),
child: TextField(),
),