Flutter 更改活动 ExpensionTile 上的文本颜色

发布于 2025-01-11 16:54:53 字数 864 浏览 0 评论 0原文

如何更改处于活动状态的 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?

enter image description here

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

我还不会笑 2025-01-18 16:54:53

要设置更改 ExpansionTile() 的文本颜色,您可以使用 textColor 属性:

展开子列表时图块标题的颜色。

用法:

textColor: Colors.green

在您的示例中:

ExpansionTile(
      textColor: Colors.green,
                    title: Text('Current Version',
                      style: TextStyle(
                          fontWeight: FontWeight.bold,
                          fontSize: 15
                      ),),
                    children: <Widget>[
                      ListTile(
                          title: Text(
                            'Version 0.1',
                            style: TextStyle(
                                fontSize: 14
                            ),
                          )
                      ),
                    ],
                  );

To set change the text color of the ExpansionTile(), you can use the textColor property:

The color of the tile's titles when the sublist is expanded.

Usage:

textColor: Colors.green

In your example:

ExpansionTile(
      textColor: Colors.green,
                    title: Text('Current Version',
                      style: TextStyle(
                          fontWeight: FontWeight.bold,
                          fontSize: 15
                      ),),
                    children: <Widget>[
                      ListTile(
                          title: Text(
                            'Version 0.1',
                            style: TextStyle(
                                fontSize: 14
                            ),
                          )
                      ),
                    ],
                  );
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文