React Native Upgrade Helper 를 통해, 0.61.5 → 0.64.0 로 버전 업그레이드 하는 중 에러가 발생
* Upgrade Helper 참고 : https://react-native-community.github.io/upgrade-helper/?from=0.61.5&to=0.64.0
모듈이 제대로 설치 안되었나 싶어, react-native-nested-scroll-view 모듈을 재설치 해주었지만 해결되지 않음
npm i --save react-native-nested-scroll-view
기존 파일과 비교해보니 AnimatedImplementation.js 파일의 위치가 다름
- 정상 (reavt-native v0.61.5) : node_modules > react-native > Libraries > animated > src > AnimatedImplementation.js
- 오류 (reavt-native v0.64.0) : node_modules > react-native > Libraries > animated > AnimatedImplementation.js
즉, react-native-nested-scroll-view 가 react-native v0.64.0 을 지원해주지 않아 사용할 수 없음
* 참고 : https://github.com/davideddr/react-native-hook-form-builder/issues/6
결국 react-native-nested-scroll-view 모듈을 제거하고, react-native 에서 default 로 제공하는 ScrollView 로 대체하여 해결
* 참고 : https://reactnative.dev/docs/next/scrollview
* ios 에서는 아래와 같이 에러 발생