Flutter 更改活动 ExpensionTile 上的文本颜色
如何更改处于活动状态的 ExpensionTile 文本颜色?
这是我要更改的 ExpensionTile,您可以看到当前颜色是紫色。
这是代码:
ExpansionTile(
title: Text('Current Version',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 15
),),
children: <Widget>[
ListTile(
title: Text(
'Version 0.1',
style: TextStyle(
fontSize: 14
),
)
),
],
),
How to change ExpensionTile text color on active?
This is the ExpensionTile I'm trying to change, as you can see the current color is purple.
This is the code:
ExpansionTile(
title: Text('Current Version',
style: TextStyle(
fontWeight: FontWeight.bold,
fontSize: 15
),),
children: <Widget>[
ListTile(
title: Text(
'Version 0.1',
style: TextStyle(
fontSize: 14
),
)
),
],
),
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
要设置更改
ExpansionTile()
的文本颜色,您可以使用textColor
属性:用法:
在您的示例中:
To set change the text color of the
ExpansionTile()
, you can use thetextColor
property:Usage:
In your example: