Nov 20, 2024
Optimizing SVG Rendering in React Native: From React-Native-SVG to Expo-Image
Learn how to optimize SVG rendering in React Native by switching from React-Native-SVG to Expo-Image, boosting app performance and reducing render times.
Author


Book a call
Table of Contents
If you are someone who is working with SVGs and use react-native-svg to render svg components, this blog is your life-saver! We will discuss how to optimize SVG performance and inspect if we still need react-native-svg?
What is SVG ?
SVG stands for Scalable Vector Graphics, a file format used to describe two-dimensional graphics. It is based on XML (Extensible Markup Language) and is used to create vector images that can scale without losing quality.
Why react-native-svg ?
- Dynamic SVGs: It allows us to draw SVGs dynamically, meaning a single svg component can accept various props like dimensions and color which will help us to render svg on runtime.
- Ease of Maintenance: Since a single component can be reused in many places, it’s very easy to maintain the codebase and a little code tweaking is required whenever a new property is required.
What is the problem with react-native-svg?
- SVG Rendering: The SVGs rendered by the library aren’t “true” SVGs. They’re React Native components rendered natively.
- Performance Problems: Rendering 500 svg at the same time using
react-native-svgtook a staggering 9–10 seconds!
Imagine you have a huge list of items rendered in SVG cards. This 9-second delay was a huge compromise, so we need a solution that could render without such performance hits.
The Solution
After evaluating alternatives, Expo-Image offers support to render SVGs natively. We already know that rendering images natively offers better performance. So, why not use Expo-Image to render SVGs? However, this approach brought its own set of challenges.
While Expo-Image offers native performance, it only accepts SVG images as Base64 URI or file URI source, meaning:
- SVG sources need to be predefined (dimensions, colors, tags, etc.).
- Dynamically generated SVGs are not supported.
To overcome this, you can pre-generate all the SVGs required for the entire app and store them in the cache. Here’s how you can implement it.
1. Converting React Native SVGs to XML
You can create a SvgGenerator component that converts functional SVG components into XML. This component when wrapped around child components will traverse its children and store the xml in an array.
2. Pre-generating and Storing SVGs in Async-Storage
After the conversion of svg into xml, you can use Base-64 library to convert those xml into base64 uri string and store it in AsyncStorage, so that we can retrieve it from the disk.
You can choose to use several optimization techniques given by Expo-Image while rendering this svg to increase performance. For example you can use the prefetch method to load an array of images even before rendering. You can leverage the cachePolicy property of Expo-Image to store images in caches which will further reduce the render time!
The Results
By implementing this approach, when you render 500 SVGs at a time, you can notice render time is decreased drastically from 9 seconds to an average of 2.5 seconds.
Conclusion
Switching from react-native-svg to native SVG rendering with Expo-Image will provide significant performance gains in your React Native project. By leveraging caching and pre-generating SVGs, you can achieve a slick, high-performing UI without compromising on the flexibility of dynamic SVGs.
This approach may add some initial complexity to the setup but greatly enhances the user experience. If you’re facing similar performance issues with dynamic SVGs, consider exploring native SVG rendering as a solution.
Related Articles.
More from the engineering frontline.
Dive deep into our research and insights on design, development, and the impact of various trends to businesses.

Apr 23, 2026
From Manual Testing to AI-Assisted Automation with Playwright Agents
This blog discusses the value of Playwright Agents in automating workflows. It provides a detailed description of setting up the system, as well as a breakdown of the Playwright Agent’s automation process.

Apr 14, 2026
The Keyboard Bounce of Death: Handling Inputs on Complex React Native Screens
Fix the React Native ‘Keyboard Bounce of Death.’ Learn why inputs jump and how to build smooth, production-ready forms with modern architecture.

Apr 9, 2026
From RFPs to Revenue: How We Built an AI Agent Team That Writes Technical Proposals in 60 Seconds
GeekyAnts built DealRoom.ai — four AI agents that turn RFPs into accurate technical proposals in 60 seconds, with real-time cost breakdowns and scope maps.

Apr 6, 2026
How We Built an AI System That Automates Senior Solution Architect Workflows
Discover how we built a 4-agent AI co-pilot that converts complex RFPs into draft technical proposals in 15 minutes — with built-in conflict detection, assumption surfacing, and confidence scoring.

Apr 6, 2026
AI Code Healer for Fixing Broken CI/CD Builds Fast
A deep dive into how GeekyAnts built an AI-powered Code Healer that analyzes CI/CD failures, summarizes logs, and generates code-level fixes to keep development moving.

Apr 2, 2026
A Real-Time AI Fraud Decision Engine Under 50ms
A deep dive into how GeekyAnts built a real-time AI fraud detection system that evaluates transactions in milliseconds using a hybrid multi-agent approach.