React Native State Management Priority: P1 (OPERATIONAL) State Strategy - Local State : Use for component-scoped state (forms, UI toggles). - Lifted State : Share between siblings via parent component. - Context : Share across components without prop drilling (theme, auth). - Zustand : Lightweight global state for small-medium apps. - Redux Toolkit : Complex apps with time-travel debugging needs. - Server State : Use for API data (caching, refetching). Zustand (Recommended for Most Apps) Anti-Patterns - No Redux for Everything : Start with Context/Zustand. - No Prop Drilling : Use Context for…