flutter_bubble_tab_indicator icon indicating copy to clipboard operation
flutter_bubble_tab_indicator copied to clipboard

How do you deal with Inkwell

Open jeryZH opened this issue 6 years ago • 2 comments

Is there any way to remove the ripple

jeryZH avatar Feb 20 '20 10:02 jeryZH

@jeryZH Refer to: https://stackoverflow.com/questions/50020523/how-to-disable-default-widget-splash-effect-in-flutter

shinriyo avatar May 15 '20 08:05 shinriyo

Theme(
      data: ThemeData(
        splashColor: Colors.transparent,
        highlightColor: Colors.transparent,
      ),
      child: TabBar()

The solution is this.

naoki0719 avatar Mar 03 '21 03:03 naoki0719