react-native-keyboard-spacer icon indicating copy to clipboard operation
react-native-keyboard-spacer copied to clipboard

RN 0.68 and ViewPropTypes deprecation

Open onelittlebird opened this issue 2 years ago • 2 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.

It is related to version 0.68 of react-native where the ViewPropTypes import was deprecated.

Here is the diff that solved my problem:

diff --git a/node_modules/react-native-keyboard-spacer/KeyboardSpacer.js b/node_modules/react-native-keyboard-spacer/KeyboardSpacer.js
index 14560d8..97933d5 100644
--- a/node_modules/react-native-keyboard-spacer/KeyboardSpacer.js
+++ b/node_modules/react-native-keyboard-spacer/KeyboardSpacer.js
@@ -8,10 +8,10 @@ import {
   LayoutAnimation,
   View,
   Dimensions,
-  ViewPropTypes,
   Platform,
   StyleSheet
 } from 'react-native';
+import { ViewPropTypes } from 'deprecated-react-native-prop-types'
 
 const styles = StyleSheet.create({
   container: {

This issue body was partially generated by patch-package.

onelittlebird avatar Jul 12 '22 09:07 onelittlebird

how should I name the .patch file, buddy?

lelukas avatar Jul 19 '22 03:07 lelukas

@lelukas react-native-keyboard-spacer+0.4.1.patch

AlbertoMeQ avatar Jul 19 '22 09:07 AlbertoMeQ