iamshadmirza / react-native-design-system

A tiny design system
https://www.npmjs.com/package/react-native-design-system
MIT License
237 stars 31 forks source link

"Style property zIndex is not supported by native animated module" while using circular progress bar #12

Closed mohammedavez closed 4 years ago

iamshadmirza commented 4 years ago

Can you share your code?
How you're using it.

volKate commented 4 years ago

@iamshadmirza I got the same error. Elevation is only supported for android, so on iOS third circle covers the first one, when percent > 50. Adding zIndex: elevation3 causes "Style property zIndex is not supported by native animated module", because it is a layout property

MonkeyThunk commented 4 years ago

I had to set useNativeDriver to false to workaround that

iamshadmirza commented 4 years ago

commit b66349e fixes this issue Thanks for help @MonkeyThunk