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.
31 lines
642 B
31 lines
642 B
#import <React/RCTViewManager.h>
|
|
|
|
#ifdef RN_FABRIC_ENABLED
|
|
#import <React/RCTViewComponentView.h>
|
|
#else
|
|
#import <React/RCTInvalidating.h>
|
|
#import <React/RCTView.h>
|
|
#endif
|
|
|
|
@interface RNSFullWindowOverlayManager : RCTViewManager
|
|
|
|
@end
|
|
|
|
@interface RNSFullWindowOverlayContainer : UIView
|
|
|
|
@end
|
|
|
|
@interface RNSFullWindowOverlay :
|
|
#ifdef RN_FABRIC_ENABLED
|
|
RCTViewComponentView
|
|
#else
|
|
RCTView <RCTInvalidating>
|
|
#endif // RN_FABRIC_ENABLED
|
|
|
|
#ifdef RN_FABRIC_ENABLED
|
|
@property (nonatomic) facebook::react::LayoutMetrics oldLayoutMetrics;
|
|
@property (nonatomic) facebook::react::LayoutMetrics newLayoutMetrics;
|
|
#endif // RN_FABRIC_ENABLED
|
|
|
|
@end
|