React Native Guideline: Touch — Use Pressable. Description: Modern touch handling. Do: Pressable for touch interactions. Don't: TouchableOpacity for new code. Good Example: <Pressable onPress={} />. Bad Example: <TouchableOpacity onPress={} />. Severity: Low. Docs: https://reactnative.dev/docs/pressable.