How do you switch between pages in Xamarin Forms?
My main page is a ContentPage and I don\'t want to switch to something like a Tabbed Page.
I\'ve been abl
If you do not want to go the previous page i.e. do not let the user go back to the login screen once authorization is done, then you can use;
App.Current.MainPage = new HomePage();
If you want to enable back functionality, just use
Navigation.PushModalAsync(new HomePage())