tengo un problema con React-native-Reanimated.
Recibí "Reanimated 2 no pudo crear un worklet, ¿tal vez olvidó agregar el complemento babel de Reanimated?, js engine: hermes" Pero ya he seguido https://docs.swmansion.com/react-native-reanimated/docs/ fundamentos/instalación 
Aquí está mi versión en reanimated:
"react-native-reanimated": "^2.3.0"Aquí está mi babel.config.js
module.exports = { presets: ['module:metro-react-native-babel-preset'], plugins: ['react-native-reanimated/plugin'], };Por favor ayúdame a resolver este problema. Muchísimas gracias
Si está usando expo , en lugar de instalar usando npm use:
expo install react-native-reanimatedEn babel.config.js, úsalo así:
module.exports = function(api) { api.cache(true); return { presets: ['babel-preset-expo'], plugins: ['react-native-reanimated/plugin'], }; };