After returning to the previous page, a block with the application title is added. How can I remove it?
валера карманов
396
Reputation points
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));
Sign in to answer