Flutter报错记录

There are multiple heroes that share the same tag within a subtree.

出现这个问题的原因有以下几种
  1. 未给Hero设置tag
  2. 设置的tag不一致
  3. 设置的tag重复了(我报错的原因是因为这个)
    我的问题出现在列表页跳转到详情页的时候,列表页的图片设置的Hero动画,详情页的轮播图设置的Hero动画,tag给的是商品的id,所以在详情页轮播图的地方会有重复。复现场景:列表跳转详情页,详情页返回列表页面必然出现这个错误There are multiple heroes that share the same tag within a subtree.

解决办法:把Hero动画从Item上放置到外层完美解决。

你可能感兴趣的:(Flutter)