noRipperFactory top-level constant

_NoRipperFactory const noRipperFactory

禁止组件水波纹

全局使用:

ThemeData(
   splashFactory: noRipperFactory,
   highlightColor: Colors.transparent,
)

局部使用:

Theme(
   data: Theme.of(context).copyWith(splashFactory: noRipperFactory, highlightColor: Colors.transparent),
   child: Child(),
)

Implementation

const noRipperFactory = _NoRipperFactory();