Skip to main content

94 posts tagged with "React Native"

Articles related to React Native

View All Tags

React Native Localization: A Complete Guide

· 7 min read
Full Stack Developer
Last updated on October 23, 2022

react native localization

Localization means adapting your app’s translations to suit your customers’ specific country or region. Supporting multiple languages (including RTL) is a critical feature for any successful mobile app, since it opens up the user base to a much larger pool of people, and also improves the user experience tremendously. Localization in React Native could be a little tricky, which is why we are writing this tutorial. Let’s see how you can localize your React Native apps elegantly.

Learn React Native: A Practical Guide

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

Learn React Native

If you already know JavaScript or React, the fastest way to learn React Native is not to watch weeks of passive tutorials. The fastest path is to run a real app, inspect the code, make small changes, debug those changes, and then ship a small feature end to end.

This guide gives you a practical learning roadmap for React Native developers who want to move from "I understand the basics" to "I can customize and launch an app."

React Native Hermes: Performance Optimization

· 5 min read
Full Stack Developer
Last updated on September 7, 2022

react native hermes

Hermes is a Javascript engine that is optimized for React Native and works for both Android and iOS. Hermes is an open source library that has been found to have potential upsides for performance in many apps such as improved start-up time, more efficient, hence reduced memory usage and a smaller app size. At the time of writing this Hermes still remains an opt-in feature and you have to make sure that the React Native version of your project is at least 0.60.4 otherwise you won’t be able to use this very resourceful library.

React Native App Ideas for Beginners

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

react native app ideas beginners

The best React Native app ideas for beginners are small enough to finish, but complete enough to teach real mobile development. A good beginner project should include screens, navigation, lists, forms, data, error states, and a build you can install on a device.

This guide gives you practical project ideas and explains what each one teaches.

React Native Charts: Data Visualization

· 10 min read
Full Stack Developer
Last updated on August 17, 2022

react native charts

In this tutorial, you will learn how to implement React Native Charts in your mobile app projects. In order to add chart visuals to a mobile app, we are going to use the react-native-chart-kit library, which provides us with the ability to add stunning charts to our React native apps. With this charts library, you can create line charts, Bezier line charts, Pie charts, Bar charts, Progress charts, and Contribution graphs. The library provides a Charts API that is easy to use, responsive, easy to plug-in and highly customizable.

How to Build React Native Swipe Cards Inspired by Tinder

· 16 min read
Full Stack Developer
Last updated on September 8, 2022

react native swipe cards

Whether you’re building a React Native Tinder Clone or an original dating app, you’ll eventually end up implementing the UI for React Native Swipe Cards. At Instamobile, we built a Tinder cards component in React Native, for our Tinder Clone app. If you’re looking to learn how to build an app like Tinder in React Native, this tutorial is the perfect place to get started from.

React Native GraphQL with Apollo Client

· 11 min read
Full Stack Developer
Last updated on July 23, 2022

React Native GraphQL Apollo

Are you interested in building a React Native app that uses GraphQL API endpoints? Then you should read this tutorial. You are going to learn how to leverage Apollo to build a client-side GraphQL application with React Native and Expo. Apollo has an entire ecosystem to build GraphQL applications. You can use it to develop client-side and server-side apps separately. Apollo has more features and support than its open-source competitors in GraphQL for JavaScript world.

Debugging React Native Apps with Breakpoints

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

react native breakpoint

Breakpoints are still one of the fastest ways to understand a React Native bug. The tool has changed: for modern React Native apps, start with React Native DevTools instead of old remote Chrome debugging or standalone React Native Debugger workflows.