Skip to content

Instantly share code, notes, and snippets.

View ugurkoysuren's full-sized avatar
🚀

Ugur Koysuren ugurkoysuren

🚀
View GitHub Profile
@ugurkoysuren
ugurkoysuren / useBackgroundGeolocaitonTracker.js
Created October 22, 2020 12:10
useBackgrounLocationTracker
import {useEffect, useState} from 'react';
import BackgroundGeolocation from '@mauron85/react-native-background-geolocation';
import Boundary, {Events} from 'react-native-boundary';
import {Platform, Alert} from 'react-native';
const useBackgroundGeolocationTracker = () => {
const [state, setState] = useState({
region: null,
latitude: null,
longitude: null,