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)
        ),
      ),

posted on 2019-05-14 10:38  cag2050  阅读(559)  评论(0编辑  收藏  举报

导航