|
|
|
|
29
|
self.interactivePopGestureDelegate.originalDelegate = stack.interactivePopGestureRecognizer.delegate;
|
29
|
self.interactivePopGestureDelegate.originalDelegate = stack.interactivePopGestureRecognizer.delegate;
|
30
|
stack.interactivePopGestureRecognizer.delegate = self.interactivePopGestureDelegate;
|
30
|
stack.interactivePopGestureRecognizer.delegate = self.interactivePopGestureDelegate;
|
31
|
|
31
|
|
|
|
32
|
+ [stack setBarStyle:[RCTConvert UIBarStyle:[withDefault.topBar.barStyle getWithDefaultValue:@"default"]]];
|
|
|
33
|
+ [stack setNavigationBarTranslucent:[withDefault.topBar.background.translucent getWithDefaultValue:NO]];
|
|
|
34
|
+ [stack setNavigationBarNoBorder:[withDefault.topBar.noBorder getWithDefaultValue:NO]];
|
32
|
[stack setTopBarBackgroundColor:[withDefault.topBar.background.color getWithDefaultValue:nil]];
|
35
|
[stack setTopBarBackgroundColor:[withDefault.topBar.background.color getWithDefaultValue:nil]];
|
33
|
[stack setInteractivePopGestureEnabled:[withDefault.popGesture getWithDefaultValue:YES]];
|
36
|
[stack setInteractivePopGestureEnabled:[withDefault.popGesture getWithDefaultValue:YES]];
|
34
|
[stack setRootBackgroundImage:[withDefault.rootBackgroundImage getWithDefaultValue:nil]];
|
37
|
[stack setRootBackgroundImage:[withDefault.rootBackgroundImage getWithDefaultValue:nil]];
|
35
|
[stack setNavigationBarTestId:[withDefault.topBar.testID getWithDefaultValue:nil]];
|
38
|
[stack setNavigationBarTestId:[withDefault.topBar.testID getWithDefaultValue:nil]];
|
36
|
[stack setNavigationBarVisible:[withDefault.topBar.visible getWithDefaultValue:YES] animated:[withDefault.topBar.animate getWithDefaultValue:YES]];
|
39
|
[stack setNavigationBarVisible:[withDefault.topBar.visible getWithDefaultValue:YES] animated:[withDefault.topBar.animate getWithDefaultValue:YES]];
|
37
|
[stack hideBarsOnScroll:[withDefault.topBar.hideOnScroll getWithDefaultValue:NO]];
|
40
|
[stack hideBarsOnScroll:[withDefault.topBar.hideOnScroll getWithDefaultValue:NO]];
|
38
|
- [stack setNavigationBarNoBorder:[withDefault.topBar.noBorder getWithDefaultValue:NO]];
|
|
|
39
|
- [stack setBarStyle:[RCTConvert UIBarStyle:[withDefault.topBar.barStyle getWithDefaultValue:@"default"]]];
|
|
|
40
|
- [stack setNavigationBarTranslucent:[withDefault.topBar.background.translucent getWithDefaultValue:NO]];
|
|
|
41
|
[stack setNavigationBarClipsToBounds:[withDefault.topBar.background.clipToBounds getWithDefaultValue:NO]];
|
41
|
[stack setNavigationBarClipsToBounds:[withDefault.topBar.background.clipToBounds getWithDefaultValue:NO]];
|
42
|
[stack setNavigationBarBlur:[withDefault.topBar.background.blur getWithDefaultValue:NO]];
|
42
|
[stack setNavigationBarBlur:[withDefault.topBar.background.blur getWithDefaultValue:NO]];
|
43
|
[stack setNavigationBarLargeTitleVisible:[withDefault.topBar.largeTitle.visible getWithDefaultValue:NO]];
|
43
|
[stack setNavigationBarLargeTitleVisible:[withDefault.topBar.largeTitle.visible getWithDefaultValue:NO]];
|