diff --git a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs index d0497df394f7..d75f13562b36 100644 --- a/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs +++ b/src/Controls/src/Core/Compatibility/Handlers/Shell/iOS/ShellFlyoutContentRenderer.cs @@ -217,7 +217,7 @@ void UpdateFooterPosition(nfloat footerHeight) var footerWidth = View.Frame.Width; - _footerView.Frame = new CoreGraphics.CGRect(0, View.Frame.Height - footerHeight, footerWidth, footerHeight); + _footerView.Frame = new CGRect(0, View.Frame.Height - footerHeight - View.SafeAreaInsets.Bottom, footerWidth, footerHeight); _tableViewController.LayoutParallax(); } diff --git a/src/Controls/tests/TestCases.HostApp/Issues/XFIssue/HeaderFooterShellFlyout.cs b/src/Controls/tests/TestCases.HostApp/Issues/XFIssue/HeaderFooterShellFlyout.cs index 44fd646bb45a..b2ec2631f5d5 100644 --- a/src/Controls/tests/TestCases.HostApp/Issues/XFIssue/HeaderFooterShellFlyout.cs +++ b/src/Controls/tests/TestCases.HostApp/Issues/XFIssue/HeaderFooterShellFlyout.cs @@ -75,8 +75,7 @@ protected override void Init() FlyoutFooter = new StackLayout() { - // Problem with footer rendering when orientation is configured on iOS. Related issue: https://github.com/dotnet/maui/issues/26395 - // Orientation = StackOrientation.Horizontal, + Orientation = StackOrientation.Horizontal, Children = { new Label() { Text = "Footer" } },