Reputation: 996
I am using the Prism.Forms.Unity
On drawer menu item selected user is navigating from MasterDetails page to next page, On the navigated page is not showing me that back arrow which will go back to my master details page.
I have tried using few options which are shown below
_navigationService.NavigateAsync("NavigationPage/Add");
NavigationPage.HasBackButton="True"
These two ways are not working for me.
What is the correct way to this?
Upvotes: 2
Views: 1260
Reputation:
There is no back button if you only have one page on the NavigationPage's navigation stack. You need to have more than one page on the nav stack to have a back button. Otherwise, there is nothing to go back to.
Upvotes: 2