【发布时间】:2020-11-10 03:14:51
【问题描述】:
我正在尝试为我的 FlutButton 小部件创建一个自定义类,当我尝试使用方括号指定颜色属性时,我收到此错误:
The default value of an optional parameter must be constant.
class CustomFlatButton extends StatelessWidget {
final String text;
final Color color;
final Color textColor;
CustomFlatButton({
this.text='Default sign in text',
this.color = Colors.white70,
this.textColor = Colors.grey[900] // this is what is causing the error [900]
});
有没有办法在不将我的小部件转换为有状态小部件的情况下解决此问题?
提前,谢谢。
【问题讨论】:
-
这能回答你的问题吗? stackoverflow.com/q/61956960