At present my app uses normal ContentPages inside a NavigationPage which works fine. I have a ControlTemplate for customising the top navigation bar away from the default.
<ContentPage ControlTemplate="{StaticResource MainPageTemplate}"
It seems I am not able to do the same for MasterDetailPage as it appears I can't use a ControlTemplate?
<MasterDetailPage ControlTemplate="{StaticResource MasterDetailTemplate}"
Is there a way to customise the navigation bar for a MasterDetailPage?
Ref: this is the approach that I have used for having a custom navigation bar:
http://lukealderton.com/blog/posts/2017/january/replacing-the-xamarin-headernavigation-bar-with-a-custom-viewtemplate/``