What problem does it solve? React Native apps built with gluestack-ui v5 often suffer from janky animations, unnecessary rerenders, unvirtualized long lists, and components that break on web. This Skill provides concrete rules and code patterns to keep apps fast and consistent across iOS, Android, and web. ## Core Features & Use Cases - Cross-Platform Rendering Rules: Enforces using Gluestack wrapper components (e.g., KeyboardAvoidingView, SafeAreaView) instead of direct react-native imports so components work on both native and web. - Performance Best Practices: Covers TypeScript typing, React.memo and useCallback memoization, Reanimated worklets for UI-thread animations, FlatList virtualization, and Platform.select usage. - v5-Specific Guidance: Documents NativeWind v5 requirements (pinning lightningcss to 1.30.1, CSS-first config) and UniWind trade-offs for reduced build steps. - Use Case: When building a screen with a long scrollable list and animations, apply the FlatList + memoized list item + Reanimated patterns to avoid dropped frames and rerender storms. ## Quick Start Review my gluestack-ui v5 screen component and fix any performance or cross-platform issues using these rules.