can any one tell me why is there an error. im a beginner in flutter. can any one help.
这是代码,错误发生在onpressed函数上。
Expanded(
child: TextButton(
onPressed: () {},
child: Padding(
padding: EdgeInsets.all(16.0),
child: Image(
image: AssetImage('images/dice1.png'),
)
),
),
),
错误:
error: Invalid constant value. (invalid_constant at line 3)
error: The values in a const list literal must be constants. (non_constant_list_element at line 3)
发布于 2021-10-12 06:24:59
如果不使用固定值,请不要使用const关键字。Flutter使用const关键字作为小部件永远不会重新构建的指示器,因为它将在编译时只进行一次计算。
https://stackoverflow.com/questions/69535830
复制相似问题