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
- The first option I tried using the NavigationPage, starting the new page using prism navigation method
_navigationService.NavigateAsync("NavigationPage/Add");
- The second option I tried to set the property in XAML
NavigationPage.HasBackButton="True"
These two ways are not working for me. What is the correct way to this?