flutter 效果实现 —— 去除水波纹效果
修改主题
theme: ThemeData(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
splashFactory: NoSplash.splashFactory,
),
或者修改单个
ElevatedButton(
onPressed: () {},
style: ElevatedButton.styleFrom(
splashFactory: NoSplash.splashFactory,
),
child: Text("Button"),
),