Как добавить 'requireNativeComponent' к экспорту? - PullRequest
1 голос
/ 05 февраля 2020

Это мое первое приложение React Native. Я пытаюсь использовать MapView из response-native-maps, но сталкиваюсь с этой ошибкой: «Попытка импортировать ошибку:« requireNativeComponent »не экспортируется из «act-native-web / dist / index». » Я просматриваю свое приложение в режиме просмотра веб-страниц (если это имеет значение). Я установил и связал реакцию-родной-карты. Вот мой текущий код:

import React from 'react';
import { StyleSheet, Text, View } from 'react-native';
import MapView from 'react-native-maps';
import { requireNativeComponent } from 'react-native';

export default function App() {
  return (
    <View style={styles.container}>
      <Text>Open up App.js to start working on your app!</Text>
    </View>
  );
}

const styles = StyleSheet.create({
  container: {
    flex: 1,
    backgroundColor: '#fff',
    alignItems: 'center',
    justifyContent: 'center',
  },
});

И ошибки:

C:/React/AwesomeProject/node_modules/react-native-maps/lib/components/MapView.js
Attempted import error: 'requireNativeComponent' is not exported from 'react-native-web/dist/index'.

C:/React/AwesomeProject/node_modules/react-native-maps/lib/components/decorateMapComponent.js       
Attempted import error: 'requireNativeComponent' is not exported from 'react-native-web/dist/index'.

C:/React/AwesomeProject/node_modules/react-native-maps/lib/components/decorateMapComponent.js       
Attempted import error: 'requireNativeComponent' is not exported from 'react-native-web/dist/index'.
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...