From 54a5e641dc829aa64f2e7530b940c4ec5553f8cb Mon Sep 17 00:00:00 2001 From: diegolmello Date: Wed, 31 Jul 2019 17:37:36 -0300 Subject: [PATCH] patch RN --- patches/react-native+0.60.4.patch | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 patches/react-native+0.60.4.patch diff --git a/patches/react-native+0.60.4.patch b/patches/react-native+0.60.4.patch new file mode 100644 index 000000000..16cddd454 --- /dev/null +++ b/patches/react-native+0.60.4.patch @@ -0,0 +1,13 @@ +diff --git a/node_modules/react-native/React/Modules/RCTRedBox.m b/node_modules/react-native/React/Modules/RCTRedBox.m +index 7ed4900..bb85402 100644 +--- a/node_modules/react-native/React/Modules/RCTRedBox.m ++++ b/node_modules/react-native/React/Modules/RCTRedBox.m +@@ -161,7 +161,7 @@ - (instancetype)initWithFrame:(CGRect)frame + - (NSInteger)bottomSafeViewHeight + { + if (@available(iOS 11.0, *)) { +- return [UIApplication sharedApplication].delegate.window.safeAreaInsets.bottom; ++ return RCTSharedApplication().delegate.window.safeAreaInsets.bottom; + } else { + return 0; + }