[iOS] RN v0.60 - Screen native module hasn't been linked.
See original GitHub issueCreated a fresh react native project and added react-navigation, react-native-gesture-handler & react-native-screens.
Added gesture handler and screens to the non auto linking config and did the appropriate react-native link xxx
commands for both libraries. I then receive this error when loading the application:
Issue Analytics
- State:
- Created 4 years ago
- Reactions:5
- Comments:17 (1 by maintainers)
Top Results From Across the Web
Unable to resolve module 'react-native-screen'
Here are my steps: I ran npm install --save react-navigation , and I got the following: Result of running npm install --save react-navigation....
Read more >react-native-screens/README.md
12, Since version 2.0.0 react-native-screens requires RN v0.60+. Check 1.0.0-alpha for Expo ... Link native modules this library ships with into your app:....
Read more >react-native-screens
This project aims to expose native navigation container components to React Native. It is not designed to be used as a standalone library ......
Read more >"Application has not been registered" error
When developing an Expo or React Native app, it's not uncommon to run into an error that looks like: Application "main" has not...
Read more >Training Services Frequently Asked Questions
Find answers to your questions about health, safety, and preparedness training and certification in the Red Cross Training Services FAQ.
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Have you tried the following in Terminal?
cd ios && pod install
in your podfile just add
pod ‘RNScreens’, :path => ‘…/node_modules/react-native-screens’
then pod install
it should work, I hate it but it seems not all RN Packages are autolinked