From 1df5380219206af244b3e4825331bcc48ef3b2da Mon Sep 17 00:00:00 2001 From: Matei Oprea Date: Tue, 8 Sep 2020 18:59:26 +0300 Subject: [PATCH] Fixes issue with border shown on iOS TopBar, even though noBorder true is passed --- lib/ios/TopBarAppearancePresenter.m | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/ios/TopBarAppearancePresenter.m b/lib/ios/TopBarAppearancePresenter.m index 64e7d4af888..aa5271345e2 100644 --- a/lib/ios/TopBarAppearancePresenter.m +++ b/lib/ios/TopBarAppearancePresenter.m @@ -52,6 +52,7 @@ - (void)updateBackgroundAppearance { - (void)showBorder:(BOOL)showBorder { UIColor* shadowColor = showBorder ? [[UINavigationBarAppearance new] shadowColor] : nil; self.getAppearance.shadowColor = shadowColor; + self.getScrollEdgeAppearance.shadowColor = shadowColor; } - (void)setBackIndicatorImage:(UIImage *)image withColor:(UIColor *)color {