mirror of
https://github.com/zhigang1992/examples.git
synced 2026-01-12 22:47:03 +08:00
20 lines
376 B
JavaScript
20 lines
376 B
JavaScript
import * as React from "react";
|
|
import { View } from "react-native";
|
|
import MapView from 'react-native-maps';
|
|
|
|
export default function App() {
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<MapView style={{
|
|
width: "100%",
|
|
height: "100%",
|
|
}} />
|
|
</View>
|
|
);
|
|
} |