英文:
Flutter and don't know how to solve this errors
问题
我希望在按下按钮时,图像会随机出现。
答案1
得分: 1
在第一张图片中,这只是一个警告,可以通过在你的构造函数中添加 key
来轻松解决这个问题
class RandomImages extends StatefulWidget {
const RandomImages({super.key}); // 添加这行
...
}
对于第二张图片,你可以将一个 Function
作为 onPressed 的值传递
onPressed: () {
// onPressed 动作
},
英文:
At the first image, it's just warning and this problem can be solved easily by adding key
to your contructors
class RandomImages extends StatefulWidget {
const RandomImages({super.key}); // add this
...
}
For second image, you can pass a Function
as value of onPressed
onPressed: () {
// onPressed actions
},
答案2
得分: 0
你需要以正确的方式设置密钥值。
我可以为您更正它,请提供代码作为文本。
英文:
You need to set the key value in proper way
I can correct it for you plz provide me the code as text
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论