Hey guys, In this article, I want to discuss implementing Android in app updates in react-native project. If you don’t know about what are In App Updates. Please consider reading this article from google. It is just a new way of updating apps, managed by google. Whenever there is a new update for your app. …
React Native
How To Read and Filter Contacts In React Native?
Hey guys, In this article I want to show you how I was able to read and filter mobile contacts in react-native. There is no direct guide available so far. So I thought of writing one here. To read contacts, I have used react-native-contacts library from github. However, this library does not allow me to …
Create Your Own Phone Number Input in React Native
Hey guys, I am back with another simple tutorial, in this article, we are going to make a phone number input in react native. Phone number input is just like a normal input field but it contains country code as prefix, there will also be a country code picker, so that we can pick the …
How To Refresh JWT Tokens Automatically In React Native?
Hey guys, I am back with another react native article. Today, we are going to discuss about most used use case in almost all the react native applications. That is handling Json Web Tokens in react native. JWT tokens are very handy to use because of their “no need to store nature”. You don’t store …
Create Your Own Overlay Loader In React Native
Hey guys, what’s up.. In this blog post I am going to talk about creating overlay spinner/loader in react native. Let’s look at the preview of Loader/Spinner first… Creating a overlay loader in react native is not that hard. However most of the new developers tend to use npm ready made packages. Once you get …
How To Use React.Context To Pass Database Reference To Child Components?
Hey guys, I am back, today I am going to talk about React.Context in reactjs. If you are a reactjs developer, this simple tutorial is for you. It is not that hard to understand and it will help you to reuse the same code in all of your reactjs projects Lets get into the matter, …