Hi everyone,
I'm developing a Xamarin Forms App that NOT needs a back button. I have three pages:
- a SplashScreeen page
- a Login page
- a RootPage (MasterDetailPage)
I'm using the solution Application.Current.MainPage = new ContentPage();
to navigate between pages but I want to clear the previous page. I know the PushAsync() and PushModalAsync() methods of the Navigation object but I really want to know the solution of my question.
Thanks !