forked from Ivasoft/mattermost-mobile
* objective-C share extension * MattermostBucket module to share data between the main app and the extension * middleware that shares the data between the main app and the extension * Fix setState when safe area in unmounted * Share extension for iOS * Fastlane changes to include iOS share extension * Fix unit test * Feedback review * define proptypes for icons
7 lines
183 B
Objective-C
7 lines
183 B
Objective-C
#import <UIKit/UIKit.h>
|
|
#import "React/RCTBridgeModule.h"
|
|
|
|
@interface ShareViewController : UIViewController<RCTBridgeModule>
|
|
+ (NSURL*) tempContainerURL: (NSString*)appGroupId;
|
|
@end
|