Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings

carloscuesta/react-native-error-boundary

Repository files navigation

react-native-error-boundary

Build Status Codecov Npm Version Npm Downloads

A simple and reusable React-Native error boundary component πŸ›

Install

yarn add react-native-error-boundary

Documentation

API

These are the props that you can pass to the ErrorBoundary component:

Property Type Required Default
Children React.Children true
FallbackComponent React.Component false FallbackComponent
onError Function false

Children

Any children that can throw an error.

The fallback component that will be rendered after catching an error. By default the library comes with a built-in component.

onError

A function that receives two arguments:

  • error: The error catched by the component.
  • stackTrace: The stacktrace of the error.
onError(error: Error, stackTrace: string): void

These are the props that the FallbackComponent receives:

Property Type Default
error Error
resetError Function

error

The error object.

resetError

A function to reset the error state. You'll want to call this function to recover from the error state.

resetError(): void

Demo

react-native-error-boundary

About

A simple React-Native error boundary component πŸ›

Topics

Resources

License

Code of conduct

Stars

Watchers

Forks

Sponsor this project

Contributors 9

AltStyle γ«γ‚ˆγ£γ¦ε€‰ζ›γ•γ‚ŒγŸγƒšγƒΌγ‚Έ (->γ‚ͺγƒͺγ‚ΈγƒŠγƒ«) /