© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
C#C
C#•4y ago
reeeeeee

MAUI - Weird footer and header when changing from NavigationPage to AppShell

I want some kind of "Splash screen" that appears for 3 seconds and then redirect to MainPage (which is inside the AppShell). But then this happens, wtf.
public App()
{
    InitializeComponent();
    MainPage = new NavigationPage(new StartPage());
    Instance = this;
}

protected override async void OnStart()
{
    try
    {
        // Check settings, session ,etcetc... TODO
        await Task.Delay(3000);
        MainPage = new AppShell();
    }
public App()
{
    InitializeComponent();
    MainPage = new NavigationPage(new StartPage());
    Instance = this;
}

protected override async void OnStart()
{
    try
    {
        // Check settings, session ,etcetc... TODO
        await Task.Delay(3000);
        MainPage = new AppShell();
    }
unknown.png
C# banner
C#Join
We are a programming server aimed at coders discussing everything related to C# (CSharp) and .NET.
61,871Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

How to hide Back Button in Maui 8 Appshell
C#CC# / help
11mo ago
MAUI - Click event not found refered in AppShell.xaml.cs
C#CC# / help
2y ago
Maui issues after changing namespace
C#CC# / help
2y ago
maui Datagrid From ( akgul.Maui.DataGrid )
C#CC# / help
2y ago