gpt4 book ai didi

flutter - 错误 : The default value of an optional parameter must be constant

转载 作者:行者123 更新时间:2023-12-03 03:30:52 28 4
gpt4 key购买 nike

将默认值分配给 Color 类型的实例变量时出现错误。仅当我使用阴影值分配颜色时才会收到此错误。
错误:可选参数的默认值必须是常量。

class CardPanelHeader extends StatelessWidget {
final String leadingPanelText;
final Color leadingPanelTextColor;
final String trailingPanelText;
final Color trailingPanelTextColor;

const CardPanelHeader({
Key key,
this.leadingPanelText,
this.leadingPanelTextColor = Colors.black87,
this.trailingPanelText,
this.trailingPanelTextColor = Colors.grey.shade600,
}) : super(key: key);

我确实检查过这个 solution但对我不起作用。
任何人都可以帮我解决这个问题。提前致谢!

最佳答案

您可以使用颜色的绝对值作为常数值;更改 Colors.grey.shade600const Color(0xFF757575)您可以找到颜色的十六进制代码 https://material.io/resources/color/

关于flutter - 错误 : The default value of an optional parameter must be constant,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63983212/

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