React Native Guideline: Styling — Use StyleSheet.create. Description: Optimized style objects. Do: StyleSheet for all styles. Don't: Inline style objects. Good Example: StyleSheet.create({ container: {} }). Bad Example: style={{ margin: 10 }}. Severity: High. Docs: https://reactnative.dev/docs/stylesheet.