React-Table is an awesome library for creating tables with multiple headers, sorting, filtering, pagination etc. But it is complex to learn. Sometimes our use case is simple and we do…
React Native
(Jump to Code | Demo) Have you seen the chat heads created by facebook messenger? They are stacked over each other and when you drag top one, the other heads…
(Jump to Code | Demo) One of the most important feature of Reactjs is its modularity. To make code more readable and maintainable, we break it into reusable components. And…
(Jump to Code | Demo) First of all, we should know what is React wrapper component? Well, its similar to any ordinary component but we define them for special tasks…
(Jump to Solution | Code | Demo) There are number of situations when you get the warning, “Can’t perform a react state update on an unmounted component“. One thing is…
React Navigation is used to navigate between app screens. It is nearly similar to websites where we click on links to open different pages. In this guide, you will learn…
Forms are the basic need of any application whether it is web based, Android, iOS or even React Native. There are many parameters involved like type of field, if it…
In this article you are going to learn how to create a login page using React Native. We will use latest packages of October 2020 so that all the dependencies…
React Native PrismJs is a real thing and yes, you can work with them. With the help of WebView, it is quite possible. Here in this article, we will learn…
React Native Animation helps in converting boring apps into interactive apps. It’s a 3 step process – Animated.Value, Animated.spring & interpolate.
React Native Image Resizemode is pretty confusing in react native official documents, especially in case of remote images. But, if you take care of few concepts, react native turns out…
When you are enclosing a View in TouchableHighlight, you will need to provide styles to TouchableHighlight. But in case of TouchableNativeFeedback, all the styles are added to child View only.