Flutter:如何为“选定”的 ListTile 设置文本颜色?

Posted

技术标签:

【中文标题】Flutter:如何为“选定”的 ListTile 设置文本颜色?【英文标题】:Flutter: How do you set the text color for a ListTile that is 'selected'? 【发布时间】:2021-08-25 20:20:13 【问题描述】:

我正在开发一个使用抽屉的 Flutter 应用程序。抽屉由使用 ListTile 类的各种菜单选项组成。文档指定当 ListTile 的“选定”属性为真时,“默认情况下,选定颜色是主题的原色。”但它没有提及文本颜色。 Whenever a ListTile is selected the corresponding text changes to blue, which goes against my theme.如何为选定的 ListTile 设置文本颜色?

谢谢。

【问题讨论】:

【参考方案1】:

您可以将主题应用到 ListTile,方法是用 ListTileTheme 包装它。

ListTileTheme(
        selectedColor: Colors.red, // text & icon color
        selectedTileColor: Colors.green, // background color
        child: ListTile(
          title: Text('cats')
        )
)

【讨论】:

以上是关于Flutter:如何为“选定”的 ListTile 设置文本颜色?的主要内容,如果未能解决你的问题,请参考以下文章

在 Flutter 中将图像添加到 ListTile

Flutter:如何使用 ListTile 作为子项创建 DropdownMenuItem

Flutter:所有 ListTile 项目都响应相同的点击

新手:如何在 Flutter 中添加多个 Listtile

Flutter ListTile 飞溅/波纹效果与边框不匹配

在 ListTile 中打开一个新视图 - Flutter