Today I am going to share the solution to the common error that most of the React Native developers are facing. This error occurs when we run React Native App in IOS or Archive App using Xcode. Its a glog error saying config.h file not found mutex.h. The Screenshot of the error in the following. […]
Unable to resolve module lib-jitsi-meet/lib-jitsi-meet.min
I have recently faced this issue while customizing JitsiMeet SDK and integrating with my existing App. Here I am going to share the solution of the error, how I solved it in my case. The App runs successfully but React Native shows the following error on the Device or Simulator screen. “Unable to resolve module […]
npm ERR! cb() never called!
I have recently faced this error “npm ERR cb never called” while running npm install command in my react-native project to install node modules. Here I am going to share the solution to the problem. The screenshot of the error is the following Solution: “npm ERR cb never called“ I have solved this error by […]
Run React Native App on a Specific Device or Simulator
To run a React Native App we have to use React Native CLI. I am going to share few commands today which will help you a lot to run a React Native App on a specific device or a specific simulator. Specifying a Device while Running React Native App To specify a particular connected device […]
Fetch Distance Between 2 Locations in React Native
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, […]