react-native-datepicker icon indicating copy to clipboard operation
react-native-datepicker copied to clipboard

useNativeDriver is required

Open HossamElharmeil opened this issue 2 years ago • 1 comments

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.

There is a warning that pops up once we open the date picker. The warning indicates that useNativeDriver is required and must be explicitly set to either true or false.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-datepicker/datepicker.js b/node_modules/react-native-datepicker/datepicker.js
index ac6cacd..d672123 100644
--- a/node_modules/react-native-datepicker/datepicker.js
+++ b/node_modules/react-native-datepicker/datepicker.js
@@ -66,7 +66,8 @@ class DatePicker extends Component {
         this.state.animatedHeight,
         {
           toValue: height,
-          duration: duration
+          duration: duration,
+          useNativeDriver: false
         }
       ).start();
     } else {
@@ -74,7 +75,8 @@ class DatePicker extends Component {
         this.state.animatedHeight,
         {
           toValue: 0,
-          duration: duration
+          duration: duration,
+          useNativeDriver: false
         }
       ).start(() => {
         this.setState({modalVisible: visible});

This issue body was partially generated by patch-package.

HossamElharmeil avatar Jan 12 '23 17:01 HossamElharmeil

same here

Screenshot 2023-02-05 at 22 00 10

tacianoscur avatar Feb 06 '23 01:02 tacianoscur