What problem does it solve? React Native's Yoga layout engine flips flexbox automatically in RTL, but physical style properties, text alignment defaults, directional icons, and gesture math do not — producing broken layouts for Arabic and Hebrew users that are hard to diagnose. ## Core Features & Use Cases - Logical Style Properties: Replace physical properties like marginLeft and paddingRight with start/end logical equivalents, including NativeWind class mappings. - RTL Enablement & Runtime Switching: Configure expo-localization, I18nManager.allowRTL/forceRTL, and mandatory app reloads for in-app language pickers. - Text, Icons, and Gestures: Fix the unset textAlign trap with a shared Text component, mirror directional icons via scaleX, and negate drag deltas for RTL. - Use Case: You are adding Arabic support to an Expo app and layouts break — use this Skill to audit physical properties, set up the localization config plugin, and verify both directions with screenshots. ## Quick Start Review my React Native screens for RTL layout issues and fix any physical style properties, text alignment, and directional icons for Arabic support.