import { useEffect, useState } from "react"; import * as Location from "expo-location"; export default useLocation = () => { const [location, setLocation] = useState({ longitude: 0.0, latitude: 0.0 }); const getLocation = async () => { try { const { granted } = await Location.requestPermissionsAsync(); if (!granted) return; const { coords: { latitude, longitude }, } = await Location.getLastKnownPositionAsync(); setLocation({ latitude, longitude }); } catch (error) { console.log(error); } }; useEffect(() => { getLocation(); }, []); return location; };