React Native Navigation Priority: P1 (OPERATIONAL) Configure Type-Safe Navigation - Library : Use for native performance. - Type Safety : Define for all navigators. - Deep Links : Configure prop in . - Validation : Validate route parameters ( ) before fetching data. See routing patterns for type-safe stack setup and deep linking configuration. Anti-Patterns - No Untyped Navigation : leads to errors. Use typed params. - No Manual URL Parsing : Use , not manual string parsing. - No Unvalidated Deep Links : Handle invalid IDs gracefully (e.g., redirect to Home/404). References See references/rou…