-
Notifications
You must be signed in to change notification settings - Fork 569
Open
Description
Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch [email protected] for the project I'm working on.
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..dd48dc5 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: true}).start();
};
_fireChangeEvent = (event) => {This issue body was partially generated by patch-package.
Metadata
Metadata
Assignees
Labels
No labels