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.

38 lines
795 B

#ifdef RN_FABRIC_ENABLED
#import <React/RCTViewComponentView.h>
#else
#import <React/RCTUIManagerObserverCoordinator.h>
#import <React/RCTViewManager.h>
#endif
#import "RNSScreenContainer.h"
NS_ASSUME_NONNULL_BEGIN
@interface RNScreensNavigationController : UINavigationController <RNScreensViewControllerDelegate>
@end
@interface RNSScreenStackView :
#ifdef RN_FABRIC_ENABLED
RCTViewComponentView <RNSScreenContainerDelegate>
#else
UIView <RNSScreenContainerDelegate, RCTInvalidating>
#endif
- (void)markChildUpdated;
- (void)didUpdateChildren;
#ifdef RN_FABRIC_ENABLED
#else
@property (nonatomic, copy) RCTDirectEventBlock onFinishTransitioning;
#endif // RN_FABRIC_ENABLED
@end
@interface RNSScreenStackManager : RCTViewManager <RCTInvalidating>
@end
NS_ASSUME_NONNULL_END