React Native Guideline: Styling — Handle platform differences. Description: Platform-specific styles. Do: Platform.select or .ios/.android files. Don't: Same styles for both platforms. Good Example: Platform.select({ ios: {}, android: {} }). Bad Example: Hardcoded iOS values. Severity: Medium. Docs: https://reactnative.dev/docs/platform-specific-code.