Импортировать ошибку показа Swiper с помощью response-native-swiper
Я пытаюсь использовать swiper из этой библиотеки https://github.com/leecade/react-native-swiper
Вот мои зависимости:
"react": 16.3.1,
"react-native": "~0.55.2",
"react-native-swiper": "^1.5.13"
Но когда я просто добавляю этот код import Swiper from 'react-native-swiper';
Мой компонент, как:
import React, { Component } from 'react';
import { View, Text } from 'react-native';
import Swiper from 'react-native-swiper';
class Welcome extends Component {
render() {
return (
<View>
<Text>Welcome</Text>
</View>
);
}
}
export default Welcome;
Это покажет ошибку, даже если я не использую <Swiper />
ошибка:
Failed to load bundle
Проверьте мой терминал показывает ошибки:
error: bundling failed: Error: While trying to resolve module `react-native-swiper` from file `/Users/huaweb/ReactNativeProject/Huaweb/src/components/Welcome.js`, the package `/Users/huaweb/ReactNativeProject/Huaweb/node_modules/react-native-swiper/package.json` was successfully found. However, this package itself specifies a `main` module field that could not be resolved (`/Users/huaweb/ReactNativeProject/Huaweb/node_modules/react-native-swiper/index.js`. Indeed, none of these files exist:
Я не знаю что However, this package itself specifies a
главныйmodule field that could not be resolved
Я не могу понять это. Я скучаю по чему-нибудь?
Любая помощь будет оценена, спасибо заранее.
3 ответа
Ну, у меня есть предложение для swiper, вы можете использовать этот пользовательский swiper. https://www.npmjs.com/package/react-native-custom-swiper
попробуйте с:
импортировать Swiper из 'react-native-swiper/src';
В node_modules найдите папку response-native-swiper и сделайте так, это сработало для меня
заменять :
module.exports = Swiper;
module.exports.default = Swiper;
от
export default Swiper
export {Swiper}