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)
        ),
      ),
相关文章
相关标签/搜索