Optimizing React Native performance involves minimizing unnecessary re-renders, efficient lists, reducing JS-thread work and bridge traffic, optimizing images, and using the native thread for animations. Performance is important for smooth, responsive apps.
Minimize re-renders (a key React concern)
✓ Avoid unnecessary RE-RENDERS:
→ React.memo (memoize components), useMemo (values), useCallback (functions)
→ correct, stable KEYS in lists; avoid creating new objects/functions inline that
cause children to re-render
→ proper state structure (don't put everything in one big state that re-renders all)
