React Native Guideline: Animation — Run on UI thread. Description: worklets for smooth animation. Do: Run animations on UI thread. Don't: JS thread animations. Good Example: runOnUI(() => {}). Bad Example: Animated on JS thread. Severity: High. Docs: .