0

反应原生的相对较新。发出以下命令来创建一个新的 react native 项目:

create-react-native-app SwiperExample
cd SwiperExample
npm install --save react-native-swipe- gestures

我修改了 App.js 并包含

从 'react-native-swiper' 导入 Swiper;

当我使用 npm start 进行测试时,出现以下错误:

无法从 "./C:\Users\sue\ReactNativeApps\SwiperExample\App.js" 解析 react-native-swiper"
无法构建 JavaScript 包

我的 package.json 包括以下依赖项

“依赖项”:{
“expo”:“^25.0.0”,
“react”:“16.2.0”,
“react-native”:“0.52.0”,
“react-native-swipe-gestures”:“^ 1.0.2"
}

有什么建议有什么问题吗?

4

1 回答 1

2

你做错了导入改变这个

import Swiper from 'react-native-swiper';

经过

import Swiper from 'react-native-swiper-gestures';

或者安装正确的软件包,以防您安装了错误的软件包

npm install --save react-native-swipe
于 2018-02-22T19:27:19.933 回答