This PR introduces useNativeDriver as a new prop to SvgAnimatedLinearGradient. Latest React Native versions gives warning that Animated.timing() must have explicitly set useNativeDriver. It is currently just a warning but generates a lot of noise in logs.
Animated: `useNativeDriver` was not specified. This is a required option and must be explicitly set to `true` or `false`
This PR introduces
useNativeDriver
as a new prop toSvgAnimatedLinearGradient
. Latest React Native versions gives warning thatAnimated.timing()
must have explicitly setuseNativeDriver
. It is currently just a warning but generates a lot of noise in logs.