gpt4 book ai didi

flutter - 如何在 flutter 中设置 RadioListTile 的非事件颜色?

转载 作者:行者123 更新时间:2023-12-04 17:28:29 24 4
gpt4 key购买 nike

我在RadioLisTile中设置了激活颜色

RadioListTile<EnumBuyItem>(
title: Text(item.itemName, style: TextStyle(color: Colors.white),),
value: item.itemValue,
groupValue: selectedItem,
onChanged: (EnumBuyItem value) { setState(() { selectedItem = value; }); },
activeColor: Colors.red,
),

但是我找不到不活动的颜色属性

最佳答案

你可以这样做:

在您的 MaterialApp() 小部件中,添加 Material ColorunselectedWidgetColor 属性。这将影响整个应用程序。

MaterialApp(
theme: ThemeData(
unselectedWidgetColor: Colors.blue,
),
);

关于flutter - 如何在 flutter 中设置 RadioListTile 的非事件颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/61847266/

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