DEV/flutter (dart)
Flutter Button hover and click effect disable
석봉
2023. 2. 10. 10:20
Flutter의 기본 태마 버튼의 경우 버튼에 마우스를 올려두면 이팩트가 생긴다.
마음에 안들어서 버튼 호버 및 클릭 이팩트를 끄는 방법을 찾아봤다.
버튼예시
IconButton(
icon: Icon(Icons.add_box_outlined,),
iconSize: 30,
splashColor: Colors.transparent, // *이 코드를 추가
highlightColor: Colors.transparent, // *이 코드를 추가
hoverColor: Colors.transparent, // *이 코드를 추가
onPressed: () {
},
)