I installed react-native-gesture-handler
in React Native Expo app.
And when I start app, it occurs many warnings.
I tried to uninstall the react-native-gesture-handler
package and install it using expo install
, yarn add
and npm install
. But it doesn't solve this problem.
Please let me know the solution if someone knows it.
I solved this problem by adding import 'react-native-gesture-handler';
in App.js after installing react-native-gesture-handler
package using yarn
or npm
.