TabBar 设置可滚动:isScrollable: true

      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)
        ),
      ),
原文地址:https://www.cnblogs.com/cag2050/p/10860921.html