标签: dart stagexl
设置宽度命令无法识别代码:
hi.graphics.strokeColor(Color.Red, width: 5);
答案 0 :(得分:1)
根据stageXL api,width属性是可选的位置属性。因此,您不必在方法调用中使用width:前缀:
width
width:
hi.graphics.strokeColor(Color.Red, 5);
有关更多信息,请参阅functions optional parameters。
答案 1 :(得分:0)
从stageXL api您的代码应
hi.graphics.strokeColor(Color.Red, width = 5);
=不是:
=
: