Home > Net >  How to disable hover decoration in Flutter TabBar
How to disable hover decoration in Flutter TabBar

Time:02-05

Description

I want to disable that gray box that is shown when the mouse is over the tab

CodePudding user response:

You can use overlayColor property to change hover color. For your case,

bottom: TabBar(
  overlayColor: MaterialStateProperty.all(Colors.transparent),

More about overlayColor.

  •  Tags:  
  • Related