gpt4 book ai didi

flutter - 更改 ExpansionTile 中的尾随图标颜色

转载 作者:行者123 更新时间:2023-12-04 16:38:46 27 4
gpt4 key购买 nike

我需要更改尾随的颜色 keyboard_down_arrowExpansionTile .我曾尝试将它包装在 Theme 小部件中并设置重音、primary 和 IconTheme,但似乎没有任何效果。

Theme(
data: Theme.of(context).copyWith(
dividerColor: Colors.transparent,
accentColor: Colors.black,
),
child: ExpansionTile(
//
title: Text("Some Text"
),
childrenPadding: EdgeInsets.symmetric(horizontal: 15),
children: [

],
),
),

最佳答案

我有打开/关闭状态的最新解决方案:

Theme(
data: Theme.of(context).copyWith(
unselectedWidgetColor: Colors.white, // here for close state
colorScheme: ColorScheme.light(
primary: Colors.white,
), // here for open state in replacement of deprecated accentColor
dividerColor: Colors.transparent, // if you want to remove the border
),
child: ExpansionTile(
...
),
),...

关于flutter - 更改 ExpansionTile 中的尾随图标颜色,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/65073880/

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