appBar: AppBar(
bottom: TabBar(
// 设置可滚动
isScrollable: true,
controller: _tabController,
tabs: tabs.map((e) => Tab(text: e)).toList(),
labelPadding: EdgeInsets.fromLTRB(20.0,.0,20.0,20.0),
indicatorPadding: EdgeInsets.fromLTRB(20.0,.0,20.0,20.0)
),
),