flutter 效果实现 —— 去除水波纹效果

修改主题

theme: ThemeData(
  splashColor: Colors.transparent,
  highlightColor: Colors.transparent,
  splashFactory: NoSplash.splashFactory,
),

或者修改单个

ElevatedButton(
  onPressed: () {},
  style: ElevatedButton.styleFrom(
    splashFactory: NoSplash.splashFactory,
  ),
  child: Text("Button"),
),

posted on 2022-09-18 21:59  Lemo_wd  阅读(958)  评论(0编辑  收藏  举报

导航