mirror of
https://github.com/lemeow125/StudE-Frontend.git
synced 2024-11-17 06:19:25 +08:00
Potential fix to expo-location crash
This commit is contained in:
parent
334978d2fd
commit
98bd8dcfb8
1 changed files with 15 additions and 14 deletions
|
@ -23,9 +23,9 @@ export default function Home() {
|
||||||
latitudeDelta: 0.000235,
|
latitudeDelta: 0.000235,
|
||||||
longitudeDelta: 0.000067,
|
longitudeDelta: 0.000067,
|
||||||
};
|
};
|
||||||
|
|
||||||
async function requestLocation() {
|
async function requestLocation() {
|
||||||
let { status } = await Location.requestForegroundPermissionsAsync();
|
setTimeout(async () => {
|
||||||
|
const { status } = await Location.requestForegroundPermissionsAsync();
|
||||||
if (status !== "granted") {
|
if (status !== "granted") {
|
||||||
setFeedback(
|
setFeedback(
|
||||||
"Permission to access location was denied. Please allow permission"
|
"Permission to access location was denied. Please allow permission"
|
||||||
|
@ -39,6 +39,7 @@ export default function Home() {
|
||||||
getDistance(location);
|
getDistance(location);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
}, 2000);
|
||||||
}
|
}
|
||||||
useEffect(() => {
|
useEffect(() => {
|
||||||
requestLocation();
|
requestLocation();
|
||||||
|
|
Loading…
Reference in a new issue