I am creating a login system with react-native, after downloading the "react-native-gesture-handler" dependencies: "^ 1.1.0"
and "react-navigation": "^ 3.5.1"
began to appear the following message error:
null is not an object (evaluating 'rngesturehandlermodule.direction')
I tried to delete the project and reface it, delete and reinstall the node_modules folder and reinstall the dependencies, but nothing worked.
I had the same issue. I then installed react-navigation
& react-native-gesture-handler
step by step as follows:
Steps :
Remove node_modules
and package-lock.json
npm install
npm install --save react-navigation
npm install --save react-native-gesture-handler
react-native link
You can find the original answer here