Files
Fluxup_PAP/node_modules/react-native-screens/ios/gamma/stack/host/RNSStackHostComponentView.h
2026-03-10 16:18:05 +00:00

27 lines
566 B
Objective-C

#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