flutter remove iconbutton hover effects code example
Example: flutter remove iconbutton hover effects
var color = Colors.transparent;
Theme(
data: Theme.of(context).copyWith(
highlightColor: color,
splashColor: color,
hoverColor: color,
),
child: YourWidget(),
)