Xamarin Forms with Prism MasterDetail Navigation

I started building an application on Xamarin Studio using Prism with Xamarin.Forms. My problem is that I cannot find the code snippet as an example of MasterDetail navigation inside the application.

Each time I go to the page, it just displays a new view on top of the previous main view. Is there an example somewhere or instructions on how to use switchable views to achieve master navigation using a prism on xamarin? I found some prismatic examples for windows applications, but nothing special for xamarin forms.

Thanks in advance and sorry for the general question.

+4
source share
1 answer

Check out the sandbox sample located in the Prism repository .. It's actually pretty simple.

https://github.com/PrismLibrary/Prism/tree/master/Sandbox/Xamarin/HelloWorld

You just need to invoke navigation from your MasterDetilPage ViewModel. This will create a page with a detailed description.

+14
source

All Articles