final List<Tab> myTabs = <Tab>[
new Tab(text: 'a'),
new Tab(text: 'b'),
new Tab(text: 'c'),
new Tab(text: 'd'),
new Tab(text: 'e'),
];
then
appBar: new AppBar(
elevation: 0,
title: _barSearch(),
backgroundColor: Colors.white,
bottom: TabBar(
isScrollable: true,
tabs: myTabs,
labelColor: Color(0xffFF645C),
labelStyle:TextStyle(fontSize: 14.0),
unselectedLabelStyle:TextStyle(fontSize: 14.0),
unselectedLabelColor: Color(0xff343434),
indicatorColor: Color(0xffFF645C),
indicatorSize: TabBarIndicatorSize.label,
indicatorPadding: EdgeInsets.only(bottom: 8.0),
),
),
It shows how I use tabbar.
But now, I find that my Tabbar layout is like to that of spaceAround.

But our project manager asked me to use spaceBetween.
