setState函数未显示,正确键入它也无济于事。我想在InkWell onTap中使用它,但是它没有显示出来!有什么帮助吗?Here you can see what I am trying to say!
答案 0 :(得分:0)
InkWell(
onTap: () {
setState(() {
});
},
)
尝试这样。 由于建议而无法看到您的完整代码。
答案 1 :(得分:-1)
检查是否是这种情况
InkWell(
onTap: () => {
// arrow should not be here.
},
child: Icon(
Icons.favorite,
color: Colors.red,
size: 27,
),
)