Posts by L. Cafezeiro • 56 points
2 posts
-
2
votes1
answer766
viewsA: Download file using React Native
Already tried using Asyncstorage? To store the information: AsyncStorage.setItem("chave", "valor"); To recover: AsyncStorage.getItem("chave").then((value) => { // salvar no "this.state".…
-
2
votes1
answer1312
viewsA: How to take the user’s location and compare with others to see which one is closest to him?
How to solve the distance between two points on the map: 1) Using Google’s Distance Matrix API This API is simple to use and very efficient. Probably the best option for those who want to calculate…