flutter_bubble_tab_indicator
flutter_bubble_tab_indicator copied to clipboard
How do you deal with Inkwell
Is there any way to remove the ripple
@jeryZH Refer to: https://stackoverflow.com/questions/50020523/how-to-disable-default-widget-splash-effect-in-flutter
Theme(
data: ThemeData(
splashColor: Colors.transparent,
highlightColor: Colors.transparent,
),
child: TabBar()
The solution is this.