Files
examples/with-maps/App.js
Yassine El Bouchaibi e199336d78 with-maps
2020-06-26 17:03:58 -04:00

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>
);
}