Closed
Description
Expectation:
- Open MasterDetailPage menu. Hamburger icon becomes back arrow.
- Push a new page onto the navigation stack and the back arrow should stay, indicating to the user they can navigate backwards.
The following meets the expectation:
new NavigationPage(new MasterDetailPage() { Detail = detail, Master = master });
The following does not:
new MasterDetailPage() { Detail = new NavigationPage(detail), Master = master };
The back arrow changes back to a hamburger menu and the user is left thinking the navigation drawer should open again, but instead the page action is to pop the page off the stack.