相对较新的原生反应。发出以下命令以创建新的反应本机项目:
create-react-native-app SwiperExample
cd SwiperExample
npm install --save react-native-swipe-gestures
我修改了App.js并包含了
从' react-native-swiper';
导入Swiper
当我使用npm start进行测试时,出现以下错误:
无法解决react-native-swiper"来自" ./ C:\ Users \ sue \ ReactNativeApps \ SwiperExample \ App.js"
构建JavaScript包失败
我的package.json包含以下dependecies
"依赖":{
" expo":" ^ 25.0.0",
"反应":" 16.2.0",
"反应原生":" 0.52.0",
" react-native-swipe-gestures":" ^ 1.0.2"
}
有什么建议吗?
答案 0 :(得分:1)
您的导入错误 改变这个
import Swiper from 'react-native-swiper';
通过
import Swiper from 'react-native-swiper-gestures';
或安装正确的软件包,以防您安装错误的软件包
npm install --save react-native-swipe