© 2022 Hashnode
#react-native
Taking screenshots programmatically in react-native is very easy. Without further a do, let's start writing a code. Dependencies react-native-view-shot for taking screenshots. @react-native-community/cameraroll for saving the screenshot. …
Adding fonts in react-native app can be frustrating. If you are doing it for the first time. But trust me, it is as simple as it sounds. Follow the below steps carefully and it will work as expected. Download the fonts Create fonts folder …
Yes, you read that correctly! To understand this weird behavior of JavaScript. First, we need to thoroughly understand two concepts. Pass by value. Pass by reference. Pass by value It simply means, While calling a function. You are passin…
Introduction What is Axios? Axios is a promise-based HTTP client for JavaScript. It can make HTTP requests and handle the transformation of request and response data. Axios can be used on a node appli…
Introduction So you built your React as an open-source project? Nice. But what next when your project is ready to be used? A lot of effort and time invested to build it to serve the community of your …
Hi everyone! Another week with lots of content, including 2 official articles on the React and React-Native blogs. The React ecosystem continues to grow, and my curation workflow is getting better too…
Learned about React.js library and looking to land opportunities as a React JS developer? Do you know what kind of projects will help you get the opportunity, and what kind of projects will help you c…
We all know React today as a Library built in JavaScript and we know the power and flexibility it gives to the front end developers. Today we are going to be exploring on all the JavaScript you need t…
Setting some grounds As you start exploring react.js, you discover it follows (with some exceptions) a unidirectional flow where data/actions in terms of props are transferred from the parent componen…
In React, Data is passed from ( parent to child ) components via props, known as unidirectional data flow. The parent component cannot directly call a function defined in the child component or reach…