vipulasri / flutter_bubble_tab_indicator

A Flutter library to add bubble tab indicator to TabBar
MIT License
189 stars 33 forks source link

Ability to remove the InkWell splashColor effect #2

Closed briceallard closed 4 years ago

briceallard commented 5 years ago

Is there a way to disable to effect you get when tapping the Tab items? image

malviyaritesh commented 4 years ago

@briceallard

Here's a hack: You can set flexibleSpace property of AppBar as follows:

flexibleSpace: DecoratedBox(
  decoration: BoxDecoration(
    color: Theme.of(context).primaryColor,
  ),
  child: FlexibleSpaceBar(),
),
vipinnegi90 commented 4 years ago

@briceallard

what if AppBar is not used for Tabs?

vipulasri commented 4 years ago

It's not related to the library. Please check: https://github.com/flutter/flutter/issues/20250