消除Flutter3.7中飞溅效果的方法

1wnzp6jl  于 2023-01-27  发布在  Flutter
关注(0)|答案(1)|浏览(148)

如何去除Flutter应用中的飞溅效果(涟漪型)?正常的飞溅工厂、高亮颜色、飞溅颜色在Flutter 3.7最新更新中似乎没有效果!有什么想法吗?

我试着用默认的方法来去除效果,但是都是徒劳的。它在正常的主题化上效果很好,但是在使用材质3主题化上有问题。

cdmah0mi

cdmah0mi1#

ThemeData中,将这些属性设置为Colors.transparent

// ...
 splashColor: Colors.transparent,
 highlightColor: Colors.transparent,
 hoverColor: Colors.transparent,

相关问题