I'm encountering an issue with React-native-Reanimated.
I keep getting the error message "Reanimated 2 failed to create a worklet, maybe you forgot to add Reanimated's babel plugin?, js engine: hermes"
However, I've already followed the steps in
https://i.sstatic.net/Pkq1k.png
Here is the version of reanimated that I am using:
"react-native-reanimated": "^2.3.0"
And here is my babel.config.js configuration:
module.exports = {
presets: ['module:metro-react-native-babel-preset'],
plugins: ['react-native-reanimated/plugin'],
};
If anyone can help me solve this problem, I would greatly appreciate it. Thank you.