2024-10-29 07:36:43 +00:00
|
|
|
#import <React/RCTViewManager.h>
|
|
|
|
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
|
|
#import <React/RCTViewComponentView.h>
|
|
|
|
#else
|
2024-05-02 15:08:24 +00:00
|
|
|
#import <React/RCTInvalidating.h>
|
|
|
|
#import <React/RCTView.h>
|
2024-10-29 07:36:43 +00:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
|
|
namespace react = facebook::react;
|
|
|
|
#endif // RCT_NEW_ARCH_ENABLED
|
2024-05-02 15:08:24 +00:00
|
|
|
|
|
|
|
@interface RNSFullWindowOverlayManager : RCTViewManager
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
|
|
|
@interface RNSFullWindowOverlayContainer : UIView
|
|
|
|
|
|
|
|
@end
|
|
|
|
|
2024-10-29 07:36:43 +00:00
|
|
|
@interface RNSFullWindowOverlay :
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
|
|
RCTViewComponentView
|
|
|
|
#else
|
|
|
|
RCTView <RCTInvalidating>
|
|
|
|
#endif // RCT_NEW_ARCH_ENABLED
|
|
|
|
|
|
|
|
#ifdef RCT_NEW_ARCH_ENABLED
|
|
|
|
@property (nonatomic) react::LayoutMetrics oldLayoutMetrics;
|
|
|
|
@property (nonatomic) react::LayoutMetrics newLayoutMetrics;
|
|
|
|
#endif // RCT_NEW_ARCH_ENABLED
|
2024-05-02 15:08:24 +00:00
|
|
|
|
|
|
|
@end
|