Open shixiaoquan opened 2 years ago
Hi! π
Firstly, thanks for your work on this project! π
Today I used patch-package to patch react-native-slider@0.11.0 for the project I'm working on.
react-native-slider@0.11.0
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-slider/lib/Slider.js b/node_modules/react-native-slider/lib/Slider.js index c640410..fad8f26 100644 --- a/node_modules/react-native-slider/lib/Slider.js +++ b/node_modules/react-native-slider/lib/Slider.js @@ -420,7 +420,7 @@ _this.props.animationConfig, {toValue:value}); -_reactNative.Animated[animationType](_this.state.value,animationConfig).start();},_this. +_reactNative.Animated[animationType](_this.state.value,{...animationConfig, useNativeDriver: false}).start();},_this. _fireChangeEvent=function(event){ diff --git a/node_modules/react-native-slider/src/Slider.js b/node_modules/react-native-slider/src/Slider.js index 37deee5..6234b20 100644 --- a/node_modules/react-native-slider/src/Slider.js +++ b/node_modules/react-native-slider/src/Slider.js @@ -420,7 +420,7 @@ export default class Slider extends PureComponent { {toValue : value} ); - Animated[animationType](this.state.value, animationConfig).start(); + Animated[animationType](this.state.value, {...animationConfig, useNativeDriver: false}).start(); }; _fireChangeEvent = (event) => {
This issue body was partially generated by patch-package.
Hi! π
Firstly, thanks for your work on this project! π
Today I used patch-package to patch
react-native-slider@0.11.0
for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.