tabBar 的标题可以不居中吗?

can titles of tabBar not centered?

TabBar 的标题可以到Tab 的中心吗?

在您的 TabBar 小部件中,将 isScrollable 选项设置为 false

TabBar(
        isScrollable: false, //set to false here
        unselectedLabelColor: Colors.grey,
        indicatorColor: Colors.black54,
        tabs: <Tab>[
          Tab(
            text: "Feed",
          ),
          Tab(
            text: "Popular",
          ),
        ],
      ),