Learn how to change version number in React Native, in order to successfully upload your update to play store.
How to update version number in react native?
How to use Slider in React native?
In this article, we are going to see how to install, and use a slider for apps. I will also show you how I used one for my app.
React Hooks Tutorials
Hooks are a new addition in React 16.8. They allow you to have some state ( own storage ) and other React features without writing classes. They are really easy to use. We will see useState, useEffect Hooks, and we will also dive into creating our own custom Hooks, as well. Table of Contents What are React Hooks? Rules of […]
How to install React?
ReactJs is one of the most widely used Javascript front-end libraries created by Facebook. It is used for mobile and web application development. React contains a collection of reusable code snippets used for building UI, called components. ReactJS also allows you to create your own components and use them to create complex UIs. Table of Contents How to install Node […]
React Firebase Authentication tutorial
Learn how to use Firebase authentication for user registration, sign-in functionality for end users. It provides an end-to-end identity solution, supporting email and password accounts, phone authentication and social media logins. In this tutorial, we will look at Firebase authentication using Email and Password. Steps to create and configure Web App on Google Firebase account. 1. Create Firebase Project First, […]
Routing in React
Ever wondered how can we go to a new page in react js. How do we implement routing in our application? What are the Routes? What is a Route? Do we use <a> tags as we do in html. What is NavLink? How to navigate? What are the benefits of using NavLink instead of the <a> tag? We are going […]
Virtual Environments Python
In this article, we will see what are virtual environments, how to activate a virtual environment and how to deactivate them and what are their benefits?