I am new to Xamarin and am using Xamarin Forms. To learn I am starting with an app that with the UI and Navigation of the iPad email app - list of mailboxes, list of mails from the selected mailbox and the details of the selected email. I started using the MasterDetailPage for the list of emails and the details of the selected email but I am now stuck with the list of mailboxes.
So far I ended up with the list of mailboxes as a separate page that navigates to the MasterDetailPage (list of emails as the master and the selected email details as the details). Not quite what I am aiming for though...
Can the MasterDetailPage be nested? I am thinking something like...
- Master (list of mailboxes)
-- Detail (MasterDetailPage)
--- Master (list of emails of the selected mailbox)
-- Detail (email)
Again, I wanted it looking/behaving like the iPad email app where the "Masters" are the list of mailboxes and list of emails of the selected mailbox that you navigate on the same location/Content area.
Is this something that has been/can be done using Xamarin Forms (XAML)? Help, suggestions and/or samples will greatly be appreciated. Thanks!