What should I do to prevent the application cover the status bar area?
It covers the whole window and status icons are visible through top_grid on iPad 2 simulator
<?xml version="1.0" encoding="utf-8" ?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
x:Class="test_cs_mobile_xamarin.main_page">
<StackLayout>
<Frame x:Name="top_frame" HasShadow="true" OutlineColor="Green" Padding="5,5,5,5" VerticalOptions = "FillAndExpand">
<ScrollView x:Name="top_scroll_view" VerticalOptions = "FillAndExpand">
<Grid x:Name="top_grid" VerticalOptions = "FillAndExpand">
<Grid.Children>
</Grid.Children>
</Grid>
</ScrollView>
</Frame>
<Frame x:Name="bottom_frame" HasShadow="true" OutlineColor="Green" Padding="5,5,5,5" VerticalOptions = "FillAndExpand">
<ScrollView x:Name="bottom_scroll_view" VerticalOptions = "FillAndExpand">
<Label Text="..." XAlign="Start" YAlign="Start" VerticalOptions="FillAndExpand" HorizontalOptions="FillAndExpand" x:Name="bottom_label" LineBreakMode="WordWrap" />
</ScrollView>
</Frame>
<StackLayout x:Name="bottom_stack_layout" Orientation="Horizontal">
<Button Text="Add 1" x:Name="button_1"></Button>
<Button Text="Add 2" x:Name="button_2"></Button>
<Button Text="http" x:Name="button_3"></Button>
<Button Text="http 1" x:Name="button_4"></Button>
</StackLayout>
</StackLayout>