gpt4 book ai didi

flutter - 禁用时如何更改下拉默认文本颜色?

转载 作者:行者123 更新时间:2023-12-05 08:03:36 27 4
gpt4 key购买 nike

当下拉菜单被禁用时,它具有默认的黑色文本颜色,我想更改它。有更改图标颜色的选项,但没有更改文本颜色的选项。
任何帮助将不胜感激。

DropdownButtonFormField(
value: widget.selectedValue,
items: widget.dropdownItems,
dropdownColor: customTheme.colors.black30,
iconEnabledColor: customTheme.colors.textColor,
iconDisabledColor: Color.fromARGB(143, 144, 144, 144),

最佳答案

更改应用主题的属性 disabledColor 或使用 Theme 小部件:

Theme(
data: Theme.of(context).copyWith(disabledColor: customTheme.colors.black30),
child: DropdownButtonFormField(
value: widget.selectedValue,
items: widget.dropdownItems,
dropdownColor: customTheme.colors.black30,
iconEnabledColor: customTheme.colors.textColor,
iconDisabledColor: Color.fromARGB(143, 144, 144, 144),
),
),

关于flutter - 禁用时如何更改下拉默认文本颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/72050800/

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