Excessive number of pending callbacks: 501
Map
함수를 통해 다수의 <TouchableOpacity />
를 랜더하며 발생한 Warning이다.
관련 github issues
https://github.com/facebook/react-native/issues/34442
해결
<TouchableOpacity />
컴포넌트 관련 이슈
("NativeAnimatedModule" is referring to the animation on the touchableOpacity components)를 확인하고
<Pressable />
컴포넌트로 변경 후 Warning을 해결할 수 있었다.
'React-Native' 카테고리의 다른 글
[React Native]Text가 래핑(줄바꿈)되지 않는 이슈 (0) | 2023.05.03 |
---|---|
[React Native]Figma에서 Export한 이미지 깨질 때 (0) | 2023.04.29 |
[React Native]IOS z-index이슈 (0) | 2023.04.12 |
[React Native]react-native-shadow-generator (0) | 2023.04.11 |
[React Native]android debug apk 명령어로 추출하기 (0) | 2023.04.10 |