Skip to main content

8 posts tagged with "Performance"

Articles about mobile app performance optimization

View All Tags

Galio Framework - Overview & How to Use It

· 11 min read
Full Stack Developer
Last updated on October 24, 2025

galio react native framework

Galio is a UI toolkit and component framework for React Native that provides a consistent set of ready-made, themeable building blocks (buttons, cards, text, inputs, nav bars, etc.) so you can prototype and ship mobile UIs faster. The galio repository includes the core components and a lightweight theme system in src/theme (see colors.tsx, sizes.tsx, index.tsx) plus components under src/ such as Block, Button, Text, Input, Card, Avatar, NavBar and more.

Learn more on the official site: galio.io and browse the source and examples on GitHub: github.com/galio-org/galio.

Improving React Native App Performance on Older Android Devices: Essential Tips

· 10 min read
Mobile Developer
Last updated on October 23, 2025

improving react native performance

This short guide helps you make React Native apps run smoother on older Android phones (API 21–28) by applying practical, beginner-friendly optimizations. Follow the steps to enable Hermes, shrink and harden your APK with ProGuard, optimize list and image rendering, and deploy fixes quickly with EAS OTA updates so users on low-end devices get a noticeably better experience.

React Native Memory Leak Fixes: Identify, Debug, and Optimize with Flipper & Hermes

· 8 min read
Mobile Developer
Last updated on August 20, 2025

memory leak fixs

Memory issues can silently erode app performance, battery life, and user satisfaction. This concise guide walks you through practical, repeatable steps to identify, debug, and fix common memory leaks in React Native apps—using Flipper, Hermes profiling, and React Developer Tools—so you can find the root cause and apply safe, testable fixes.

React Native FlatList Optimization: Smooth Scrolling with Expo & TypeScript

· 10 min read
Mobile Developer
Last updated on August 17, 2025

React native flatlist optimization

React Native lists can become sluggish as data grows — this short guide shows practical, TypeScript-friendly techniques to get smooth scrolling back. Using Expo (SDK 51) and React Native 0.75.4 as a baseline, you'll learn how to tune FlatList props, memoize item rendering, fetch data efficiently with Axios, and deploy fixes via EAS OTA updates. Follow the step-by-step examples and code snippets to improve rendering performance on both iOS and Android.

React Native Performance Optimization

· 4 min read
Full Stack Developer
Last updated on August 18, 2023

react native performance

React Native stands out as a go-to framework for developers aiming to create high-quality cross-platform mobile applications. But, as with any framework, you may occasionally run into performance hiccups. This article will provide you with a deep dive into enhancing your React Native application’s performance, complete with code examples and step-by-step explanations.

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.

Compress Videos in React Native

· 4 min read
Full Stack Developer
Last updated on March 21, 2022

compress videos react native

In this article we are going to take a look at how to compress videos in React Native as well as general media, such as photos or audio content. It’s standard practice to compress the full size of raw images/videos before they are sent to be stored on the server in order to conserve storage cost, but most importantly to improve the user experience by an order of magnitude.

How to Improve Perceived Performance in Mobile Apps

· 14 min read
Full Stack Developer
Last updated on October 4, 2022

perceived performance mobile

Mobile apps must be snappy and playful. To fall in love with your mobile app, users need to perceive it as fast, responsive and bug-free. Perceived performance measures how fast a user thinks your mobile app is. Fortunately, there are several standard techniques that we can apply to our UI/UX, in order to improve the perceived performance of mobile apps significantly.