본문 바로가기
Coding/Flutter

[flutter] 터치했을 때 Splash 효과 없애기 - asknsolve.com

by Ask & Solve 2023. 4. 3.

<main.dart>에서

Widget build(BuildContext context) {
    return MaterialApp(
      .
      .
      theme: ThemeData(
        .
        .
        splashColor: Colors.transparent, // 짧게 클릭했을 때 Splash효과 없애고 싶다면 추가
        highlightColor: Colors.transparent, // 길게 클릭했을 때 Splash 효과 없애고 싶다면 추가
        .
        .
      )
    );
  }
)

짧게 터치할 때의 효과 없애기 : splashColor를 Colors.transparent로

길게 터치할 때의 효과 없애기 : highlightColor를 Colors.transparent로

댓글