<main.dart>에서
Widget build(BuildContext context) {
return MaterialApp(
.
.
theme: ThemeData(
.
.
splashColor: Colors.transparent, // 짧게 클릭했을 때 Splash효과 없애고 싶다면 추가
highlightColor: Colors.transparent, // 길게 클릭했을 때 Splash 효과 없애고 싶다면 추가
.
.
)
);
}
)
짧게 터치할 때의 효과 없애기 : splashColor를 Colors.transparent로
길게 터치할 때의 효과 없애기 : highlightColor를 Colors.transparent로
'Coding > Flutter' 카테고리의 다른 글
[flutter] GridView 속 이미지 크기 조정 : AspectRatio위젯 + BoxFit (0) | 2023.04.03 |
---|---|
[Flutter] GridView - asknsolve.com (0) | 2023.04.03 |
[flutter] DefaultTextStyle widget : asknsolve.com (0) | 2023.04.01 |
[Flutter] Gridview 로딩 중일때 기본사진 추가 - FadeInImage 위젯 (0) | 2023.03.31 |
댓글