Skip to main content

3 posts tagged with "Hermes"

Articles about React Native Hermes engine

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.