React Native Guideline: State — Consider Zustand or Redux. Description: External state management. Do: Zustand for simple Redux for complex. Don't: useState for global state. Good Example: create((set) => ({ })). Bad Example: Prop drilling global state. Severity: Medium. Docs: .