What problem does it solve? React Native apps frequently suffer from scroll jank, unnecessary re-renders, runtime crashes from falsy JSX rendering, and slow animations caused by layout-property animation. This Skill provides a prioritized rule set that guides AI agents and developers to write performant React Native and Expo code from the start. ## Core Features & Use Cases - Prioritized Rule Set: 35+ rules across 14 categories ranked by impact, from CRITICAL rendering rules (avoid falsy && in JSX, wrap strings in Text) to LOW-priority font and import optimizations. - List & Animation Optimization: Concrete patterns for virtualized lists (LegendList, FlashList), memoization with primitive props, GPU-accelerated Reanimated animations, and GestureDetector press states. - Platform Guidance: Rules for native navigators, native modals, safe-area handling, monorepo native dependency setup, and React Compiler compatibility. - Use Case: When building a product feed screen, apply the list-performance rules to virtualize the list, pass primitives to memoized row components, and load compressed thumbnail images to eliminate scroll jank. ## Quick Start Review my React Native product list screen and refactor it using the list performance and animation best practices.