I have TabbedPage. This has multiple ContentPages inside.
E.g; I have a settings page, I want a new page to be opened by clicking a button in the settings page, hiding the tab part.
When I do as below, the new page is gone, but I have to re-create the TabbedPage to return. Is it possible to create a new page in view with tabbedPage hidden in the background? Can you help if possible?
Application.Current.MainPage = new NavigationPage(new PageTrial());
I'm new to Xamarin sorry if it's a simple rendering.
Original Poster (OP) said Jason's suggestion of Modal page solves their need.