答案 0 :(得分:1)
我的问题是我的元素具有相同的键。 设置一个唯一的密钥即可解决该问题。
dogs
答案 1 :(得分:0)
确保仅使用动画组件
在我的情况下,以下行导致此错误 我正在使用interpolateColor(react-native-redash)更改背景颜色
<View style={{ ...StyleSheet.absoluteFill, backgroundColor }}></View>
正确的是
<Animated.View style={{ ...StyleSheet.absoluteFill, backgroundColor }}></Animated.View>