diff --git a/src/Uno.UI/Controls/CommandBar/CommandBarRenderer.iOS.cs b/src/Uno.UI/Controls/CommandBar/CommandBarRenderer.iOS.cs index c77b6766a240..1aa65d2df263 100644 --- a/src/Uno.UI/Controls/CommandBar/CommandBarRenderer.iOS.cs +++ b/src/Uno.UI/Controls/CommandBar/CommandBarRenderer.iOS.cs @@ -215,6 +215,13 @@ protected override void Render() Native.BackIndicatorTransitionMaskImage = backButtonIcon; } + // Remove 1px "shadow" line from the bottom of UINavigationBar + // The legacy customization (iOS12 and lower) to remove this shadow is done in the above switch for Background property + if (UIDevice.CurrentDevice.CheckSystemVersion(13, 0)) + { + appearance.ShadowColor = UIColor.Clear; + } + Native.CompactAppearance = appearance; Native.StandardAppearance = appearance; Native.ScrollEdgeAppearance = appearance;