jineecode
각종 에러들 타파하기 본문
Attempt to invoke interface method 'boolean com.swmansion.reanimated.layoutReanimation.NativeMethodsHolder.isLayoutAnimationEnabled()' on a null object reference
다음 코드로 고친다.
디버깅 시도 시, 에뮬레이터가 꺼지는 경우
1. 라이브러리 설치
yarn add react-native-reanimated@next
2. Babel Plugin 추가
프로젝트 디렉터리에 있는 babel.config.js에 react-native-reanimated의 plugin을 추가.
plugin은 목록의 맨 아래에 추가.
babel.config.js
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: [
[
'babel-plugin-root-import',
{
rootPathPrefix: '~',
rootPathSuffix: 'src',
},
],
'react-native-reanimated/plugin'
],
};
'React native' 카테고리의 다른 글
React navigation (1) (0) | 2022.05.23 |
---|---|
RN 반응형 디자인 적용법 (0) | 2022.02.17 |
Warning: [react-native-gesture-handler] Seems like you're using an old API with gesture components, check out new Gestures system! (0) | 2022.02.09 |
React-Navigation 사용법 (0) | 2021.08.10 |
RN 새로운 프로젝트 생성하기 (0) | 2021.07.10 |
Comments