mileung / rn-sprite-sheet

A sprite sheet animation library for React Native
https://www.npmjs.com/package/rn-sprite-sheet
153 stars 35 forks source link

Animated.loop is not working in web #32

Open matiosfree opened 3 years ago

matiosfree commented 3 years ago

Hey there. Animated.loop is not working when I start the animation in web app. the problem is in the useNativeDriver: true Seems need to add a condition there to be like:

useNativeDriver: Platform.OS !== 'web',

https://github.com/MiLeung/rn-sprite-sheet/blob/master/src/SpriteSheet.js#L213