【发布时间】:2021-11-30 18:32:21
【问题描述】:
can any one tell me why is there an error. im a beginner in flutter. can any one help.
这是代码,错误是onpressed fucntion。
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)
【问题讨论】:
-
删除你写在 row children 附近的 const 关键字
-
谢谢@MidhunMP 你能告诉我为什么,因为它在删除 const 关键字后起作用。
标签: flutter widget material-design flutter-widget