Reputation: 3088
React Native Webview module is giving the following error irrespective you do react-native run-ios
or start the app using XCode.
requireNativeComponent: "RNCWebView" was not found in the UIManage
Upvotes: 0
Views: 1087
Reputation: 3088
Try react-native link package_name
and then cd ios
and pod install
This should solve the problem
Upvotes: 1