Skip to content

Commit

Permalink
Merge pull request #18 from simonyiszk/zoomable-map
Browse files Browse the repository at this point in the history
feat: added zoomable map
  • Loading branch information
berenteb authored Jan 24, 2024
2 parents 0a9bea1 + 33c3020 commit 6520c7e
Show file tree
Hide file tree
Showing 4 changed files with 343 additions and 1 deletion.
6 changes: 6 additions & 0 deletions app/(tabs)/map.tsx
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
import { ReactNativeZoomableViewWithGestures } from '@openspacelabs/react-native-zoomable-view';

import { Screen } from '../../components/base/screen';
import { Header } from '../../components/common/header';
import { Title } from '../../components/common/title';
import { Map } from '../../components/map/map';

interface MapPageProps {}

Expand All @@ -10,6 +13,9 @@ export default function MapPage({}: MapPageProps) {
<Header>
<Title>Térkép</Title>
</Header>
<ReactNativeZoomableViewWithGestures>
<Map />
</ReactNativeZoomableViewWithGestures>
</Screen>
);
}
Loading

0 comments on commit 6520c7e

Please sign in to comment.