1 min readJun 18, 2018
Hi, great library! So you have blue indicators and white text on it, and the tabView is not active, then the text is grey. How can I achieve that with your package?
Here is my code
bottom: new TabBar(
indicatorColor: Colors.redAccent,
indicator: new BubbleTabIndicator(
indicatorHeight: 25.0,
indicatorColor: Colors.redAccent[200],
tabBarIndicatorSize: TabBarIndicatorSize.tab,
),
tabs: [
new Tab(child: new Text("Current Bookings" , style: new TextStyle(color: Colors.white),),),
new Tab(child: new Text("Past Bookings", style: new TextStyle(color: Colors.white),),),
],
),