1 minute read

Adding Maps to React Native Applications

Next Article
Memory Leakage

Memory Leakage

06

Rendering Issue

Advertisement

A react native app's performance may be hindered by two rendering issues. These are Uncontrolled vs. Controlled Components and Global State.

To resolve the first issue, remove the value prop entirely from TextInput. It will fix the data flow from the native to the JS side individually. As a result, synchronization issues will be addressed.

For the second issue, handling state management with specialized libraries such as Redux or Overmind.js can improve performance.

This article is from: