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.

