I'm attempting to use the Xamarin.Forms MasterDetail page to implement a Hamburger menu navigation. The issue I'm having is that, depending on how I change the detail page, either the hamburger menu disappears but Back functionality works, or the hamburger stays but we lost the ability to navigate through the detail pages (the hardware/on screen back button returns the user to the device's home screen).
The issue is easy to replicate using the most current XF (2.3.4.247); create a new Cross Platform App (Xamarin) in Visual Studio. Ensure all Nuget packages are up to date. Then to the Shared Project, add a MasterDetail page called MyMasterPage.
By default in MyMasterDetailPage.xaml.cs in the ListView_ItemSelected there's a line Detail = new NavigationPage(page) which preserves the hamburger menu, but effectively doesn't navigate between detail pages. Pressing back on Android closed the app.
If you change the line to Detail.Navigation.PushAsync(page, true) the back button works and you can navigate through all the previously opened sub items, but the hamburger icon is replace with another back button (in addition to the one the device normally shows).
How can I get the hamburger menu to stay so the user can access it on all pages, while still allowing the user to go back to previous Detail pages?