I have a StackLayout in the MasterPage of a MasterDetailPage in Xamarin Forms, which has as VerticalOptions "FillAndExpand", but it doesn't fill the whole ContentPage in my UWP app (I don't know, if it works correctly on Android or iOS). In the screenshot you can see a green bar at the bottom left corner.
What can I do to make the StackLayout fill the whole MasterPage?
Here is my MasterPage:
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:prism="clr-namespace:Prism.Mvvm;assembly=Prism.Forms"
xmlns:local="clr-namespace:TobyList_XamarinForms"
Title="Toby"
prism:ViewModelLocator.AutowireViewModel="True"
x:Class="TobyList_XamarinForms.Views.MasterPage"
BackgroundColor="Green">
<StackLayout Padding="5" VerticalOptions="FillAndExpand" BackgroundColor="#F9F9F9" />
</ContentPage>