Skip to main content

94 posts tagged with "React Native"

Articles related to React Native

View All Tags

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 and Update Sources

· 5 min read
Full Stack Developer
Last updated on May 6, 2026

best react native newsletters

React Native changes quickly, but subscribing to every feed is not a strategy. A good learning system should separate official release information, curated weekly summaries, deep technical posts, and product-focused app development guidance.

This list focuses on resources that help React Native developers stay current without turning every week into research work.

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

Debugging React Native Apps

· 4 min read
Full Stack Developer
Last updated on May 6, 2026

React Native debugging changed a lot since Flipper was the default answer. In modern React Native apps, the first tool to open is React Native DevTools. Use native tooling from Xcode and Android Studio when you need to debug the platform layer, and keep Flipper only for older apps or custom plugin workflows that still depend on it.