React Native Native Modules Use this skill when creating custom native modules, integrating third-party native libraries, or accessing platform-specific functionality not available through JavaScript. Key Concepts Native Modules Overview Native modules bridge JavaScript and native code: Turbo Modules (Modern Approach) Turbo Modules provide better performance with type safety: Calling Native Code from JS Best Practices iOS Native Module (Swift) Create a native module in Swift: Android Native Module (Kotlin) Create a native module in Kotlin: TypeScript Wrapper Create a type-safe wrapper: Native…