newsmemory-ios-sdk/Frameworks/RNScreens.xcframework/ios-arm64/Headers/RNSScreenContainer.h

32 lines
619 B
C
Raw Normal View History

2024-03-06 10:57:49 +00:00
#import <React/RCTViewManager.h>
@protocol RNSScreenContainerDelegate
- (void)markChildUpdated;
- (void)updateContainer;
@end
@protocol RNScreensViewControllerDelegate
@end
@interface RNScreensViewController : UIViewController <RNScreensViewControllerDelegate>
- (UIViewController *)findActiveChildVC;
@end
@interface RNSScreenContainerManager : RCTViewManager
@end
@interface RNSScreenContainerView : UIView <RNSScreenContainerDelegate, RCTInvalidating>
@property (nonatomic, retain) UIViewController *controller;
@property (nonatomic, retain) NSMutableArray *reactSubviews;
- (void)maybeDismissVC;
@end