#import #import #import #import #import @interface ShareViewController : ReactNativeShareExtension @end @implementation ShareViewController RCT_EXPORT_MODULE(); - (UIView*) shareView { NSURL *jsCodeLocation; jsCodeLocation = [[RCTBundleURLProvider sharedSettings] jsBundleURLForBundleRoot:@"index" fallbackResource:nil]; RCTRootView *rootView = [[RCTRootView alloc] initWithBundleURL:jsCodeLocation moduleName:@"NotesnookShare" initialProperties:nil launchOptions:nil]; rootView.window.backgroundColor =[UIColor clearColor]; rootView.layer.shadowOpacity = 0; rootView.backgroundColor = [UIColor clearColor]; // Uncomment for console output in Xcode console for release mode on device: // RCTSetLogThreshold(RCTLogLevelInfo - 1); return rootView; } @end