Quantcast
Channel: Active questions tagged react-native+ios - Stack Overflow
Viewing all articles
Browse latest Browse all 16552

Unable to resolve module 'react-navigation' from .../App.js: Module 'react-navigation' does not exist in the Haste module map

$
0
0

So I've just set up an app to start building it out and I keep getting this error from my App.js. This is a part of a udemy course in which I've followed every instruction to a T...so im beyond confused of what the hell is happening and I've followed every suggestion I can find. Unable to resolve module react-navigation from /Users/3x7r3m157/Development/React-Native/food/App.js: Module react-navigation does not exist in the Haste module map

This might be related to https://github.com/facebook/react-native/issues/4968To resolve try the following:  1. Clear watchman watches: `watchman watch-del-all`.  2. Delete the `node_modules` folder: `rm -rf node_modules && npm install`.  3. Reset Metro Bundler cache: `rm -rf /tmp/metro-bundler-cache-*` or `npm start -- --reset-cache`.  4. Remove haste cache: `rm -rf /tmp/haste-map-react-native-packager-*`.facebook::ReactABI35_0_0::JSIExecutor::defaultTimeoutInvoker(std::__1::function<void ()> const&, std::__1::function<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > ()>)facebook::ReactABI35_0_0::JSIExecutor::defaultTimeoutInvoker(std::__1::function<void ()> const&, std::__1::function<std::__1::basic_string<char, std::__1::char_traits<char>, std::__1::allocator<char> > ()>)ED0789CD-8D80-39F4-9651-D8707D9C0337ED0789CD-8D80-39F4-9651-D8707D9C0337_dispatch_main_queue_callback_4CF97285ACB-7B21-393A-ABF6-03F1DBB5D2A297285ACB-7B21-393A-ABF6-03F1DBB5D2A2CFRunLoopRunSpecificGSEventRunModalUIApplicationMainExponent0DC9A4BA-C3E8-3487-99DB-1B5C86597AF5

Heres my App.js:

import { createAppContainer } from 'react-navigation';import { createStackNavigator } from 'react-navigation-stack';import SearchScreen from './src/screens/SearchScreen';const navigator = createStackNavigator ({  Search: SearchScreen}, {  initialRouteName: 'Search',  defaultNavigationOptions: {    title: 'BusinessSearch'  }});export default createAppContainer(navigator);

Viewing all articles
Browse latest Browse all 16552

Trending Articles