Skip to main content

75 posts tagged with "React Native"

Articles related to React Native

View All Tags

React Native Debugger Setup

· 9 min read
Full Stack Developer
Last updated on June 25, 2023

react native debuggers

React Native Debugger is a powerful tool that helps developers debug React Native applications more quickly. It provides a suite of impressive features, such as UI inspector, redux inspector, breakpoints and networking inspector. In this article, we are going to learn how to install and use the React Native Debugger, which will boost your development productivity by an order of magnitude. In layman’s terms, a Debugger is a tool used for debugging. If you are a developer of any programming background, you must have already come across a debugger in your life. React Native Debugger is a standalone debugger tool built using the Electron framework. You can easily integrate this debugger tool along with the Chrome Dev tool. This debugger tool is based on the remote debugger which is included in React Native out of the box. However, the React Native debugger packs a lot more features than the remote one.

AWS AppSync with React Native

· 14 min read
Full Stack Developer
Last updated on March 27, 2023

app sync

AWS Amplify is a framework that lets us develop a web or mobile application quickly. In this tutorial, we are going to continue to learn how to perform CRUD operations with the database by using GraphQL mutations. AWS Amplify has a complete toolchain wiring and managing APIs with GraphQL. The API we will be creating in this tutorial is a GraphQL API using AWS AppSync (a managed GraphQL service) and the database will be Amazon DynamoDB (a NoSQL database).

Best React Native Newsletters

· 8 min read
Full Stack Developer
Last updated on January 19, 2023

best react native newsletters

As a developer, your days are extremely busy. As a React Native developer, even more so. With the technology evolving at a rapid pace, staying up to date with the latest React Native & Expo releases is always a struggle. That’s why I decided to curate the best React Native Newsletters, that help me stay on top of my mobile developer game.

Unit Testing in React Native

· 6 min read
Full Stack Developer
Last updated on January 12, 2023

react native unit tests

Unit tests are a vital part of any software development project and React Native is no exception. Unit tests are small, isolated pieces of code that test a single component or feature of an app. Writing unit tests for React Native apps can help developers catch bugs early, ensure code quality, and make debugging easier.

Gradients in React Native

· 5 min read
Full Stack Developer
Last updated on January 11, 2023

gradients react native

Gradients bring out a colorful taste in our apps. So it’s important to know how and when to use them in your mobile apps. In React Native, gradients are extremely easy to integrate and in this article we are going to describe exactly how to implement them. There are mainly two types of linear gradients in React Native and CSS: Linear and Radial gradient Two of the most used JavaScript libraries for generating gradients in React Native are

Facebook Login in React Native with Firebase Auth

· 7 min read
Full Stack Developer
Last updated on November 17, 2022

facebook login react native

There are various popular ways to login into a mobile application. Facebook is a great authentication choice. In fact, we are using it in all of our React Native Templates, at Instamobile. Login with Facebook is an easy and efficient way to make the user comfortable with signing up for your app. In this tutorial, we are integrating Facebook Login React Native leveraging Firebase Auth. We are using Expo, to reduce development friction.