0
votes

How do I add a hamburger menu on the right side navigation bar in Xamarin forms?

enter image description here

1
Are you want tool bar or hamburger ?Ziyad Godil

1 Answers

0
votes

Add this to your xaml

<ContentPage.ToolbarItems>
    <ToolbarItem Order="Secondary" Priority="0" Text="Item 1" Command="{Binding Item1_Command}"/>
    <ToolbarItem Order="Secondary" Priority="0" Text="Item 2" Command="{Binding Item2_Command}"/>
</ContentPage.ToolbarItems>