본문 바로가기

error records

[React Native] "RNSScreenStackHeaderConfig" was not found in the UIManager.

반응형

React Native에서 navigator 사용을 위해 아래의 라이브러리 들을 설치했다. 

$ npm install @react-navigation/native @react-navigation/native-stack

문제가 없다고 생각했는데 나온 에러 ! 

 

"RNSScreenStackHeaderConfig" was not found in the UIManager.

 

찾아보니 필수로 설치가 필요한 라이브러리들이 두개 더 있었다. 

 

$ npm install react-native-screens react-native-safe-area-context

위 두개를 더 설치하고 

프로젝트 경로로 가서 

$ cd ios
$ pod install 
$ cd .. 
$ react-native run-ios

pod install을 다시 해주고 실행시키니 되었다. ! 

 

 

 

배운점 : react-native에서 navigator를 사용할 때 아래 4가지 라이브러리들을 모두 설치해야 한다 !

 

react-navigation/native
react-navigation/native-stack
eact-native-screens
react-native-safe-area-context

 

반응형