【发布时间】:2021-12-31 00:32:48
【问题描述】:
【问题讨论】:
【问题讨论】:
在您的 TabBar 小部件中,将 isScrollable 选项设置为 false
TabBar(
isScrollable: false, //set to false here
unselectedLabelColor: Colors.grey,
indicatorColor: Colors.black54,
tabs: <Tab>[
Tab(
text: "Feed",
),
Tab(
text: "Popular",
),
],
),
【讨论】: