Hi! 👋
Firstly, thanks for your work on this project! 🙂
Today I used patch-package to patch react-native-youtube@2.0.2 for the project I'm working on.
Here is the diff that solved my problem:
diff --git a/node_modules/react-native-youtube/YouTube.ios.js b/node_modules/react-native-youtube/YouTube.ios.js
index 2e1bf41..bf005c1 100644
--- a/node_modules/react-native-youtube/YouTube.ios.js
+++ b/node_modules/react-native-youtube/YouTube.ios.js
@@ -1,6 +1,7 @@
import React from 'react';
import PropTypes from 'prop-types';
-import ReactNative, { requireNativeComponent, NativeModules, ViewPropTypes } from 'react-native';
+import ReactNative, { requireNativeComponent, NativeModules } from 'react-native';
+import { ViewPropTypes } from 'deprecated-react-native-prop-types';
const RCTYouTube = requireNativeComponent('RCTYouTube', null);
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-youtube@2.0.2for the project I'm working on.Here is the diff that solved my problem:
This issue body was partially generated by patch-package.