<ContentPage.Content>
<navigationdrawer:SfNavigationDrawer
x:Name="navigationDrawer"
DrawerWidth ="200"
BackgroundColor="Black"
Transition="Push"
DrawerHeight="3000"
>
<navigationdrawer:SfNavigationDrawer.ContentView>
<Grid x:Name="mainContentView" BackgroundColor="White">
<Grid.RowDefinitions>
<RowDefinition Height="10*"/>
<RowDefinition Height="90*"/>
</Grid.RowDefinitions>
<StackLayout BackgroundColor="Green" Orientation="Horizontal">
<Button
x:Name="burgerButton"
HorizontalOptions="Start"
Margin="0,0,0,0"
VerticalOptions="CenterAndExpand"
BackgroundColor="Yellow"
Clicked="BurgerButton_Clicked"
>
<Button.WidthRequest>
<OnIdiom x:TypeArguments="x:Double"
Phone="40"
Tablet="70"
/>
</Button.WidthRequest>
</Button>
</StackLayout>
</Grid>
</navigationdrawer:SfNavigationDrawer.ContentView>
<navigationdrawer:SfNavigationDrawer.DrawerHeaderView>
<BoxView BackgroundColor="Aqua"/>
</navigationdrawer:SfNavigationDrawer.DrawerHeaderView>
<navigationdrawer:SfNavigationDrawer.DrawerContentView>
<BoxView BackgroundColor="Beige"/>
</navigationdrawer:SfNavigationDrawer.DrawerContentView>
</navigationdrawer:SfNavigationDrawer>
</ContentPage.Content>