mirror of
https://github.com/zhigang1992/react-navigation.git
synced 2026-02-08 22:44:14 +08:00
Adds support for stack navigation primitives (UINavigationViewController and Android fragment container with back button support)
15 lines
300 B
Objective-C
15 lines
300 B
Objective-C
#import <React/RCTViewManager.h>
|
|
#import <React/RCTUIManagerObserverCoordinator.h>
|
|
#import "RNSScreenContainer.h"
|
|
|
|
@interface RNSScreenStackView : UIView <RNSScreenContainerDelegate>
|
|
|
|
- (void)markChildUpdated;
|
|
- (void)didUpdateChildren;
|
|
|
|
@end
|
|
|
|
@interface RNSScreenStackManager : RCTViewManager
|
|
|
|
@end
|