first commit

This commit is contained in:
2026-03-10 16:18:05 +00:00
commit 11f9c069b5
31635 changed files with 3187747 additions and 0 deletions

View File

@@ -0,0 +1,47 @@
#pragma once
#ifdef RCT_NEW_ARCH_ENABLED
#import <React/RCTViewComponentView.h>
#else
#endif
#import <React/RCTViewManager.h>
NS_ASSUME_NONNULL_BEGIN
@protocol RNSScreenContainerDelegate
- (void)markChildUpdated;
- (void)updateContainer;
@end
@protocol RNSViewControllerDelegate
@end
@interface RNSViewController : UIViewController <RNSViewControllerDelegate>
- (UIViewController *)findActiveChildVC;
@end
@interface RNSScreenContainerManager : RCTViewManager
@end
@interface RNSScreenContainerView :
#ifdef RCT_NEW_ARCH_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