Hi,
I want to use the Navigation control, but it seems that it cannot fill the drawer area
I specify something like this:
<SfNavigationDrawer.DrawerFooterView>
<StackLayout VerticalOptions="FillAndExpand" BackgroundColor="Aqua" Orientation="Vertical"/>
</control:NavigationDrawer.MenuFooter>
<SfNavigationDrawer.DrawerContentView>
<Grid BackgroundColor="Bisque" VerticalOptions="FillAndExpand">
<Grid.RowDefinitions>
<RowDefinition Height="100"></RowDefinition>
<RowDefinition Height="*"></RowDefinition>
<RowDefinition Height="100"></RowDefinition>
</Grid.RowDefinitions>
<StackLayout VerticalOptions="FillAndExpand" BackgroundColor="Blue"></StackLayout>
<StackLayout Grid.Row="1" VerticalOptions="FillAndExpand" BackgroundColor="Red"></StackLayout>
<StackLayout Grid.Row="2" VerticalOptions="FillAndExpand" BackgroundColor="Yellow"></StackLayout>
</Grid>
And it display this: (whiere is the "Bisque" color it should be the exoanded grid)