Skip to content Skip to sidebar Skip to footer

React Native "rncsafeareaview" Was Not Found In The Uimanager

I am running a react-native application on Mac. but I am getting 'RNCSafeAreaView' was not found in the UIManager.

Solution 1:

update version of this module by typing following command in terminal:

npm install react-native-safe-area-context@1.0.2

it will solve this problem

Solution 2:

Had the same issue. The issue was that react-native-safe-area-view docs assumed that Autolinking is supported by the react-native-safe-area-context library when its clearly not. Had to link manually by running on cli react-native link react-native-safe-area-context as the official react-native-safe-area-context docs point out.

For more reference the libraries official docs:

Post a Comment for "React Native "rncsafeareaview" Was Not Found In The Uimanager"