After returning to the previous page, a block with the application title is added. How can I remove it?

валера карманов 396 Reputation points
2024-10-03T14:44:17.3033333+00:00

2024-10-03_17-41-02

In the App.xaml.cs, use following code to set the Mainpage

public partial class App : Application
{
	public App()
	{
		InitializeComponent();
		MainPage = new AppShell();
	}
}

Use Following code to navigate the child page.

await Navigation.PushModalAsync(new DemoPage(current));
.NET MAUI
.NET MAUI
A Microsoft open-source framework for building native device applications spanning mobile, tablet, and desktop.
3,596 questions
{count} votes

Your answer

Answers can be marked as Accepted Answers by the question author, which helps users to know the answer solved the author's problem.