React Native performance optimize કરવું એ unnecessary re-renders ને minimize કરવું, lists ને efficient બનાવવું, JS-thread work અને bridge traffic ને ઘટાવવું, images ને optimize કરવું, અને animations માટે native thread ને use કરવું સામેલ કરે છે. Performance smooth અને responsive ઍપ્લિકેશન્સ માટે મહત્વપૂર્ણ છે.
Re-renders ને minimize કરો (એક 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)
