Skip to content

Commit 5b7ddec

Browse files
committed
Fix topBar.noBorder option
1 parent 919fa12 commit 5b7ddec

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

lib/ios/RNNStackPresenter.m

+5-5
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,7 @@ - (void)applyOptions:(RNNNavigationOptions *)options {
2929
self.interactivePopGestureDelegate.originalDelegate = stack.interactivePopGestureRecognizer.delegate;
3030
stack.interactivePopGestureRecognizer.delegate = self.interactivePopGestureDelegate;
3131

32+
[stack setTopBarBackgroundColor:[withDefault.topBar.background.color getWithDefaultValue:nil]];
3233
[stack setInteractivePopGestureEnabled:[withDefault.popGesture getWithDefaultValue:YES]];
3334
[stack setRootBackgroundImage:[withDefault.rootBackgroundImage getWithDefaultValue:nil]];
3435
[stack setNavigationBarTestId:[withDefault.topBar.testID getWithDefaultValue:nil]];
@@ -39,7 +40,6 @@ - (void)applyOptions:(RNNNavigationOptions *)options {
3940
[stack setNavigationBarTranslucent:[withDefault.topBar.background.translucent getWithDefaultValue:NO]];
4041
[stack setNavigationBarClipsToBounds:[withDefault.topBar.background.clipToBounds getWithDefaultValue:NO]];
4142
[stack setNavigationBarBlur:[withDefault.topBar.background.blur getWithDefaultValue:NO]];
42-
[stack setTopBarBackgroundColor:[withDefault.topBar.background.color getWithDefaultValue:nil]];
4343
[stack setNavigationBarLargeTitleVisible:[withDefault.topBar.largeTitle.visible getWithDefaultValue:NO]];
4444
[stack setNavigationBarLargeTitleFontFamily:[withDefault.topBar.largeTitle.fontFamily getWithDefaultValue:nil] fontSize:[withDefault.topBar.largeTitle.fontSize getWithDefaultValue:nil] fontWeight:[withDefault.topBar.largeTitle.fontWeight getWithDefaultValue:nil] color:[withDefault.topBar.largeTitle.color getWithDefaultValue:nil]];
4545
[stack setNavigationBarFontFamily:[withDefault.topBar.title.fontFamily getWithDefaultValue:nil] fontSize:[withDefault.topBar.title.fontSize getWithDefaultValue:nil] fontWeight:[withDefault.topBar.title.fontWeight getWithDefaultValue:nil] color:[withDefault.topBar.title.color getWithDefaultValue:nil]];
@@ -67,6 +67,10 @@ - (void)mergeOptions:(RNNNavigationOptions *)options resolvedOptions:(RNNNavigat
6767
[super mergeOptions:options resolvedOptions:resolvedOptions];
6868
RNNStackController* stack = self.boundViewController;
6969

70+
if (options.topBar.background.color.hasValue) {
71+
[stack setTopBarBackgroundColor:options.topBar.background.color.get];
72+
}
73+
7074
if (options.popGesture.hasValue) {
7175
[stack setInteractivePopGestureEnabled:options.popGesture.get];
7276
}
@@ -107,10 +111,6 @@ - (void)mergeOptions:(RNNNavigationOptions *)options resolvedOptions:(RNNNavigat
107111
[stack setNavigationBarBlur:[options.topBar.background.blur get]];
108112
}
109113

110-
if (options.topBar.background.color.hasValue) {
111-
[stack setTopBarBackgroundColor:options.topBar.background.color.get];
112-
}
113-
114114
if (options.topBar.largeTitle.visible.hasValue) {
115115
[stack setNavigationBarLargeTitleVisible:options.topBar.largeTitle.visible.get];
116116
}

0 commit comments

Comments
 (0)