Home > Software design >  Can I put another ContentPage in ContentPage inside TabbedPage?
Can I put another ContentPage in ContentPage inside TabbedPage?

Time:12-19

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.

CodePudding user response:

Original Poster (OP) said Jason's suggestion of Modal page solves their need.

  • Related