-
Notifications
You must be signed in to change notification settings - Fork 97
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
Using "inner" or "useArt" crashing on IOs #41
Comments
i got this problem to |
This is the error |
hi, im try to release a new version of my app. but got this error. how can i slove this ? |
I my case i achieved same effect as inner using dark color in place of lightShadowColor and light color in place of darkShadowColor with swapShadows={true} and removed inner and useArt. Just a workaround. Something like this: <Neomorph
|
same issue |
The issue is related to the @react-native-community/art module. There is a fix for this: react-native-art/art#70 but it is not released yet. As a workaround install the latest code from the art repo: |
same issue~ |
This is also not working. If you are not using inner shadow and useArt option then you can avoid using that option and it will work for ios. |
works for me |
hey guys, is this fixed yet? Or is there a hope that it's gonna be fixed soon? |
Some news about a new version guys? |
Honestly, this lib is unreliable. I am copying it down and maintaining it as part of the app |
I couldn't get it working with so I used a patch file for this fix using patch-package patch file: @react-native-community+art+1.2.0.patch.zip |
It worked for me after struggling a bit. |
Worked for me. Thank you very much! |
Works for me, thanks! |
I have added a neomorph component like this :
<Neomorph
darkShadowColor={Attrs.commonDarkShadowColor} // <- set this
lightShadowColor={Attrs.commonLightShadowColor}
inner={true}
useArt={true}
style={styles.background}
/>
IOs build is crashing on this line :
{
[self invalidate];
_shadow = shadow;
}
Above lines are located in ARTNode.m file
The text was updated successfully, but these errors were encountered: