forked from wix/react-native-navigation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRNNLayoutProtocol.h
44 lines (27 loc) · 1.25 KB
/
RNNLayoutProtocol.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
#import "RNNLayoutInfo.h"
#import "RNNBasePresenter.h"
#import "RNNComponentViewCreator.h"
#import "RNNEventEmitter.h"
typedef void (^RNNReactViewReadyCompletionBlock)(void);
@protocol RNNLayoutProtocol <NSObject, UINavigationControllerDelegate, UIViewControllerTransitioningDelegate, UISplitViewControllerDelegate>
@required
- (instancetype)initWithLayoutInfo:(RNNLayoutInfo *)layoutInfo
creator:(id<RNNComponentViewCreator>)creator
options:(RNNNavigationOptions *)options
defaultOptions:(RNNNavigationOptions *)defaultOptions
presenter:(RNNBasePresenter *)presenter
eventEmitter:(RNNEventEmitter *)eventEmitter
childViewControllers:(NSArray *)childViewControllers;
- (void)render;
- (UIViewController<RNNLayoutProtocol> *)getCurrentChild;
- (CGFloat)getTopBarHeight;
- (CGFloat)getBottomTabsHeight;
- (UIViewController *)topMostViewController;
- (void)mergeOptions:(RNNNavigationOptions *)options;
- (void)mergeChildOptions:(RNNNavigationOptions *)options child:(UIViewController *)child;
- (RNNNavigationOptions *)resolveOptions;
- (void)setDefaultOptions:(RNNNavigationOptions *)defaultOptions;
- (void)overrideOptions:(RNNNavigationOptions *)options;
- (void)onChildWillAppear;
- (void)readyForPresentation;
@end