mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-09 22:51:57 +08:00
19 lines
324 B
Objective-C
19 lines
324 B
Objective-C
#import <React/RCTViewManager.h>
|
|
|
|
@protocol RNSScreenContainerDelegate
|
|
|
|
- (void)markChildUpdated;
|
|
- (void)didUpdateChildren;
|
|
|
|
@end
|
|
|
|
@interface RNSScreenContainerView : UIView <RNSScreenContainerDelegate>
|
|
|
|
- (void)markChildUpdated;
|
|
- (void)didUpdateChildren;
|
|
|
|
@end
|
|
|
|
@interface RNSScreenContainerManager : RCTViewManager
|
|
@end
|