Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Unable To Resolve module react-native-pager-view React Native

I am learning react native. When installing the app in simulator, i am facing an issue which is following. Please provide any solution.

If i install react-native-pager-view then it throws error. And when i uninstalled it. It is throwing following error-:

   Unable to resolve module react-native-pager-view in the root directory.

enter image description here

like image 926
Rakesh Saini Avatar asked Jun 19 '26 00:06

Rakesh Saini


2 Answers

I've solved this issue by running:

yarn add react-native-pager-view 
like image 140
ElManini Avatar answered Jun 22 '26 11:06

ElManini


Try running this command:

rm -rf yarn.lock node_modules ios/Pods ios/Podfile.lock && yarn install && cd ios && pod install && cd ..
like image 42
Thanh Chương Avatar answered Jun 22 '26 13:06

Thanh Chương