From 75c118580db541f8bd5fb17709fbc0827feff3cb Mon Sep 17 00:00:00 2001 From: JackWillie Date: Sat, 9 Feb 2019 03:18:40 +0200 Subject: [PATCH] Revert #755 Attempt to fix issues with removeChildren and manageChildren bugs, causing exceptions from RCTUIManager Related to #258 and #848 https://github.com/facebook/react-native/issues/23350 https://github.com/FormidableLabs/victory-native/issues/432 https://github.com/indiespirit/react-native-chart-kit/issues/62 https://github.com/JesperLekland/react-native-svg-charts/pull/280 https://github.com/JesperLekland/react-native-svg-charts/issues/244 --- ios/ViewManagers/RNSVGNodeManager.m | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/ios/ViewManagers/RNSVGNodeManager.m b/ios/ViewManagers/RNSVGNodeManager.m index 1eca8fb..3fd1e23 100644 --- a/ios/ViewManagers/RNSVGNodeManager.m +++ b/ios/ViewManagers/RNSVGNodeManager.m @@ -151,6 +151,11 @@ - (UIView *)view return [self node]; } +- (RCTShadowView *)shadowView +{ + return nil; +} + RCT_EXPORT_VIEW_PROPERTY(name, NSString) RCT_EXPORT_VIEW_PROPERTY(opacity, CGFloat) RCT_EXPORT_VIEW_PROPERTY(matrix, CGAffineTransform)