React Native Guideline: Async — Handle errors gracefully. Description: Error boundaries and fallbacks. Do: Error UI for failed requests. Don't: Crash on error. Good Example: {error ? <ErrorView /> : <Content />}. Bad Example: No error handling. Severity: High. Docs: .