Skip to main content

63 posts tagged with "Mobile Development"

Articles related to mobile development

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).

How to Use Animated View in React Native

· 6 min read
Full Stack Developer
Last updated on February 17, 2023

animated-view-react-native

Animated View is a powerful way to animate components in React Native. It can be used to create smooth and fluid animations which can be used to enhance the user experience. In this tutorial, we will learn how to use Animated View in React Native to create 5 different animation examples.

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

Tips & Tricks to Get Familiar with a New Codebase Faster

· 7 min read
Full Stack Developer
Last updated on December 20, 2022

familiar codebase tricks

This article assumes you have just got your new job and you are finding it demanding to settle in and start working on your new team’s codebase. We discuss in this article some of the tricks that can help you familiarize with a new codebase faster. These tips and tricks are a summary after an intense research and consulting with some field developers in the industry. There’s no magic here, just practical and efficient steps in getting you familiar with a new codebase as fast as possible. This article will as well help you as a developer to maintain a sane codebase for the next developer that will take on your good work. Let’s jump right in Here are the five major trips to master a new codebase

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.