skip to Main Content

I got this error after installing the react-native-share & react-native-view-shot library

Excessive number of pending callbacks: 501. Some pending callbacks that might have leaked by never being called from native code: {"18939":{"module":"NativeAnimatedModule","method":"startAnimatingNode"},"18944"

the effect is that the application becomes slow in response when navigating

2

Answers


  1. This code has a problem with the animation controller that responds with scrolling movement, which causes a memory leak in the app.
    If you are using hooks such as ‘useEffect’ or ‘useCallback,’ make sure to check if the cleanup is properly done.

    Login or Signup to reply.
Please signup or login to give your own answer.
Back To Top
Search