-
-
Notifications
You must be signed in to change notification settings - Fork 327
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to make a working Snack with Expo >= 45 #291
Comments
The same with react native CLI, after updating from |
I suffer the same issue after bumping With a revert, the issue has been resolved. This is the reanimated issue but not a bug. It seems the usage of reanimated in this library is implemented in a slightly wrong way. |
How can I reproduce this problem locally? |
@dohooo I can't sure except it happens only This is my code about that I can't expect what is problem but I used these props. <Carousel
style={{ flex: 1 }}
data={groups}
renderItem={/* not related, crash even return null */}
width={screenWidth}
windowSize={3}
onSnapToItem={index => setSelectedGroup(groups[index])}
mode={'parallax'}
modeConfig={{
parallaxScrollingScale: 1,
parallaxScrollingOffset: 23,
}}
loop={false}
/> |
Sorry, I've been working all day. I am really busy. It's a little tiring for me to maintain this project right now. 😞 |
Hi, I'm still getting the same errors in 3.1.3. I think it's the same problem described in #298 |
Can you provide a repo that can reproduce this problem? |
|
It works 👍 |
Describe the bug
After updating from 3.1.0 to 3.1.1 I get error 'Attempting to define property on object that is not extensible'. I tried to make a Snack to reproduce and investigate this error, but I'm not able to run even a minimal example - I get error 'a.g.__reanimatedWorkletInit is not a function. (In 'a.g.__reanimatedWorkletInit(n)', 'a.g.__reanimatedWorkletInit' is undefined)'. After switching Expo from 46 to 44 this Snack works.
To Reproduce
Steps to reproduce the behavior:
Expected behavior
No 'a.g.__reanimatedWorkletInit is not a function. (In 'a.g.__reanimatedWorkletInit(n)', 'a.g.__reanimatedWorkletInit' is undefined)' error in Expo >= 45
Versions (please complete the following information):
The text was updated successfully, but these errors were encountered: