Before the SDK 51 update came to Expo, my application was working, but now when I navigate between tabs or click a button with a navigator, the application closes, probably due to a simple error. What is the reason and how can I solve it?
I tried:
watchman watch-del '/Users/ege'
then:
watchman watch-project '/Users/ege'
2
Answers
It is a fresh issue of expo sdk 51.
You simply need to install reanimated library.
Then import it from top of your root layout file. (_layout.tsx)
More info at:
https://github.com/expo/expo/issues/28618
Thank you so much. This would’ve saved me days to discover! It was the first thing I found when updating!