You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
46 lines
841 B
46 lines
841 B
#ifdef RN_FABRIC_ENABLED
|
|
#import <React/RCTViewComponentView.h>
|
|
#else
|
|
#endif
|
|
|
|
#import <React/RCTViewManager.h>
|
|
|
|
NS_ASSUME_NONNULL_BEGIN
|
|
|
|
@protocol RNSScreenContainerDelegate
|
|
|
|
- (void)markChildUpdated;
|
|
- (void)updateContainer;
|
|
|
|
@end
|
|
|
|
@protocol RNScreensViewControllerDelegate
|
|
|
|
@end
|
|
|
|
@interface RNScreensViewController : UIViewController <RNScreensViewControllerDelegate>
|
|
|
|
- (UIViewController *)findActiveChildVC;
|
|
|
|
@end
|
|
|
|
@interface RNSScreenContainerManager : RCTViewManager
|
|
|
|
@end
|
|
|
|
@interface RNSScreenContainerView :
|
|
#ifdef RN_FABRIC_ENABLED
|
|
RCTViewComponentView <RNSScreenContainerDelegate>
|
|
#else
|
|
UIView <RNSScreenContainerDelegate, RCTInvalidating>
|
|
#endif
|
|
|
|
@property (nonatomic, retain) UIViewController *controller;
|
|
@property (nonatomic, retain) NSMutableArray *reactSubviews;
|
|
|
|
- (void)maybeDismissVC;
|
|
|
|
@end
|
|
|
|
NS_ASSUME_NONNULL_END
|