【问题标题】:can titles of tabBar not centered?tabBar 的标题可以不居中吗?
【发布时间】:2021-12-31 00:32:48
【问题描述】:

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

【问题讨论】:

    标签: flutter dart tabbar


    【解决方案1】:

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

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

    【讨论】:

    • 成功了!谢谢你:)
    猜你喜欢
    • 1970-01-01
    • 2021-11-02
    • 2018-07-21
    • 1970-01-01
    • 2017-05-31
    • 2021-07-08
    • 2011-09-30
    • 2017-02-23
    • 1970-01-01
    相关资源
    最近更新 更多