Steps to install React-Navigation
- yarn add react-navigation react-native-gesture-handler
- react-native link react-native-gesture-handler
- Hit 2 issues when launch the app
(null is not an object(evaluating 'RNGestureHandlerModule.xxx')) 'React/RCTEventDispatcher.h' file not found
- Reinstall Pod with command
rm -rf Pods; pod install
- Can't resolve symbol android.support.v4.util.Pools in react-native-gesture-handler
- change all
import android.support.v4.util.Pools;
toimport androidx.core.util.Pools;
@ node_modules