In this tutorial, I will explain how you can fetch distance between 2 locations in React Native using Google Directions API. Using Google Directions API we can find the by-road distance between two latitudes & longitudes. You may find another way to find distance using some mathematical expressions without using Google API. But that gives […]
Fetch Nearest Places in React Native Using Google Places API
It’s a common requirement in Apps to fetch nearest Places using Google Places API. In this article, I will explain how to fetch the nearest places in React Native using google places API. You can use this method to fetch places for both Android & IOS Apps. Method to Fetch Nearest Places in React Native […]
Preload Images in React Native – Android & IOS
It’s a common requirement in the Apps to load images from remote URLs. React Native Image component automatically keeps images in the cache for future use and fast loading. But the very first time it can take time to download an image from a remote URL. Sometimes it looks weird when the image comes after […]
Hideable View in React Native – Show/Hide View & It’s Content
As we know, there is no direct way to Show / Hide or change the visibility of a View in React Native. Here I have created a Custom component Hideable View in React Native. You can use this View component in place of the Native View component. Or you can even wrap your Any View, […]