Error: Unable to resolve module `react-native-gesture-handler`

Gesture Handler not found in your react native project. run this command

npm install react-native-gesture-handler

You need to install react-native-gesture-handler as well separately in the project dependency list and link it too with native as well. Please refer to this doc.


Use the following command to install

yarn add react-native-gesture-handler
    

Then link the library in the specific project

react-native link react-native-gesture-handler

Tags:

React Native