Relatively new to react native. Issued the following commmands to create a new react native project:
create-react-native-app SwiperExample
cd SwiperExample
npm install --save react-native-swipe-gestures
I modified App.js and included
import Swiper from 'react-native-swiper';
When I go to test using npm start, I the following error:
Unable to resolve react-native-swiper" from "./C:\Users\sue\ReactNativeApps\SwiperExample\App.js"
Failed building JavaScript bundle
My package.json include the following dependecies
"dependencies": {
"expo": "^25.0.0",
"react": "16.2.0",
"react-native": "0.52.0",
"react-native-swipe-gestures": "^1.0.2"
}
Any suggestions what is wrong?
You are doing a wrong import Change this
import Swiper from 'react-native-swiper';
By
import Swiper from 'react-native-swiper-gestures';
Or install the correct package in case you installed the wrong one
npm install --save react-native-swipe