React Native செயல்திறனை மேம்படுத்துவது தேவையற்ற re-renders குறைத்தல், திறமையான lists, JS-thread பணி குறைத்தல் மற்றும் bridge ட்রராஃபிக், படங்களை மேம்படுத்துதல், மற்றும் அனிமேশன்களுக்கு native thread பயன்படுத்துதல் ஆகியவற்றை உள்ளடக்குகிறது. செயல்திறன் மென்மையான, நাড்சாড்டாக பொதுக்கின்ற பயன்பாடுகளுக்கு முக்கியமானது.
Re-renders குறைத்தல் (ஒரு முக்கியமான React கவலை)
✓ 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)
