将原生 Mapview 组件反应到 Expo 项目中
React Native Mapview component into Expo project
我希望将 React Native MapView Component 添加到我使用 expo 创建的新项目中。说明上说我需要修改iOS和Android文件夹中的文件,但是expo不会生成iOS和Android文件夹,对吧?
我可以在我的项目中使用这个组件吗?
根据https://docs.expo.io/versions/latest/sdk/map-view/
包含在内
"No setup required for use within the Expo app, or within a standalone app for iOS."
import React from 'react';
import MapView from 'react-native-maps';
export default class App extends React.Component {
render() {
return (
<MapView style={{flex: 1}} />
);
}
}
我希望将 React Native MapView Component 添加到我使用 expo 创建的新项目中。说明上说我需要修改iOS和Android文件夹中的文件,但是expo不会生成iOS和Android文件夹,对吧?
我可以在我的项目中使用这个组件吗?
根据https://docs.expo.io/versions/latest/sdk/map-view/
包含在内"No setup required for use within the Expo app, or within a standalone app for iOS."
import React from 'react';
import MapView from 'react-native-maps';
export default class App extends React.Component {
render() {
return (
<MapView style={{flex: 1}} />
);
}
}