gpt4 book ai didi

dart - 如何根据选择的选项卡更改样式?

转载 作者:IT王子 更新时间:2023-10-29 06:53:51 24 4
gpt4 key购买 nike

以下是我在 Flutter 中处理 TabBar 的代码

TabBar(controller: tabController, indicatorColor: white, tabs: [
Tab(
child: Text(
"Present",
style: TextStyle(fontFamily: "BarlowBold", color: black),
),
),
Tab(
child: Text(
"Upcoming",
style: TextStyle(fontFamily: "BarlowBold", color: black),
),
)
]),

我需要根据选择的选项卡更改文本的 fontFamily。我尝试了 tabController 的属性,但它们没有帮助

最佳答案

同样可以用 - labelStyle: & unselectedLabelStyle: of TabBar

TabBar(
indicatorColor: Colors.white,
labelStyle: TextStyle(fontSize: 22.0,fontFamily: 'Family Name'), //For Selected tab
unselectedLabelStyle: TextStyle(fontSize: 10.0,fontFamily: 'Family Name'), //For Un-selected Tabs
tabs: [

关于dart - 如何根据选择的选项卡更改样式?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54760458/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com