The hamburger button of the master detail page is always on the left even I set the FlowDirection
to RightToLeft
, this happens when the MainPage
is set this way in App.xaml.cs:
MainPage = new MasterDetailPage();
The menu itself is on the right:
But I noticed that it works properly when I put it in NavigationPage:
MainPage = new NavigationPage( new MasterDetailPage());
but with this approach the back button is still aligned to the left!!
and I have to set the NavigationPage.HasNavigationBar
to False, to look normal (without the NavigationBar being at the top of the master page).
Is there a solution to this problem?