Files
react-navigation/ios/RNSScreen.h
Krzysztof Magiera 31281d6b68 Initial commit.
2018-08-03 13:54:11 +02:00

21 lines
489 B
Objective-C

#import <React/RCTViewManager.h>
#import <React/RCTView.h>
#import "RNSScreenContainer.h"
@class RNSScreenContainerView;
@interface RNSScreenManager : RCTViewManager
@end
@interface RNSScreenView : RCTView <RCTInvalidating>
@property (weak, nonatomic) UIView<RNSScreenContainerDelegate> *reactSuperview;
@property (nonatomic, retain) UIViewController *controller;
@property (nonatomic) BOOL active;
@end
@interface UIView (RNSScreen)
- (UIViewController *)parentViewController;
@end