In my MasterDetail based project, I need a custom appearence for the navigation part for a specific detail page. To avoid rendering a custom Navigation, I set
NavigationPage.SetHasNavigationBar(this, false);
so navigation disappear an then I create by grid a background and a button like:
<Grid>
<Image Source="BackgroundImage.png"/> <!-- This should fill the grid -->
<Image Source="back_button" HorizontalOptions="StartAndExpand" Aspect="AspectFit" >
<Image.GestureRecognizers>
<TapGestureRecognizer Tapped="Handle_Tapped"/>
</Image.GestureRecognizers>
</Image>
</Grid>
Handle_Tapped should be manage the open/hide menu of master detail. I think i need to manage the IsPresented properties like
MasterDetailPage nav = new MasterDetailPage();
nav.IsPresented = true;
but that do nothing. Any help?