Syncfusion v16.4.0.47.
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:navigationdrawer="clr-namespace:Syncfusion.SfNavigationDrawer.XForms;assembly=Syncfusion.SfNavigationDrawer.XForms"
xmlns:insurancePopup="clr-namespace:Sanaap.App.Views.Insurance"
xmlns:viewModels="clr-namespace:Sanaap.App.ViewModels.Insurance"
x:Class="Sanaap.App.Views.EvaluationRequest.EvaluationRequestMenuView">
<ContentPage.Resources>
<viewModels:InsuranceListPopupViewModelLocator x:Key="insuranceListPopupViewModelLocator"/>
</ContentPage.Resources>
<navigationdrawer:SfNavigationDrawer DrawerHeight="450" DrawerHeaderHeight="0" DrawerFooterHeight="0" Position="Bottom" x:Name="navigationDrawer" VerticalOptions="FillAndExpand">
<navigationdrawer:SfNavigationDrawer.ContentView>
<StackLayout>
</StackLayout>
</navigationdrawer:SfNavigationDrawer.ContentView>
<navigationdrawer:SfNavigationDrawer.DrawerContentView>
<insurancePopup:InsuranceListPopupView BindingContext="{Binding InsuranceListPopupViewModel,Source={StaticResource insuranceListPopupViewModelLocator}}"/>
</navigationdrawer:SfNavigationDrawer.DrawerContentView>
</navigationdrawer:SfNavigationDrawer>
</ContentPage>