skip to Main Content

how to fix error NativeAnimatedModule on react native

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…

VIEW QUESTION

configuring babel.config.js on react native project

I need to configure my babel.config.js to use react-native-vision-camera as: module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: [ [ 'react-native-reanimated/plugin', { globals: ['__scanCodes'], }, ], ], }; but my current configuration is as: module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: [ 'nativewind/babel',…

VIEW QUESTION
Back To Top
Search