79837303

Date: 2025-12-03 20:42:30
Score: 0.5
Natty:
Report link

You can solve this issue by setting the BackgroundColor of your AppShell to Transparent. After that, SafeAreaEdges="None" on your pages works correctly, and your content can extend into the safe area.

Example:

<Shell
    x:Class="YourApp.AppShell"
    xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
    xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
    Shell.FlyoutBehavior="Disabled"
    Shell.BackgroundColor="Transparent">

    <TabBar>
        <!-- Your ShellContent -->
    </TabBar>
</Shell>
Reasons:
  • Long answer (-0.5):
  • Has code block (-0.5):
  • Unregistered user (0.5):
  • Low reputation (1):
Posted by: Daga