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,26 @@
#pragma once
#import "RNSReactBaseView.h"
@class RNSStackController;
@class RNSStackScreenComponentView;
NS_ASSUME_NONNULL_BEGIN
@interface RNSStackHostComponentView : RNSReactBaseView
@property (nonatomic, nonnull, strong, readonly) RNSStackController *stackController;
- (nonnull NSMutableArray<RNSStackScreenComponentView *> *)reactSubviews;
@end
#pragma mark - Communication with StackScreen
@interface RNSStackHostComponentView ()
- (void)stackScreenChangedActivityMode:(nonnull RNSStackScreenComponentView *)stackScreen;
@end
NS_ASSUME_NONNULL_END