<?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:local="clr-namespace:XamarinEssentials"  
             x:Class="XamarinEssentials.MainPage">  
  
    <StackLayout>  
        <StackLayout HorizontalOptions="Center" VerticalOptions="Start">  
  
         <Image Margin="0,50,0,0" x:Name="imgBanner" Source="banner.png" ></Image>  
         <Image Margin="0,0,0,10" x:Name="imgXamarinEssential" Source="xamarinessential.png" ></Image>  
         <Label Margin="0,0,0,10" FontAttributes="Bold" FontSize="Large" TextColor="#CA6F1E" HorizontalTextAlignment="Center" Text="Appinfo"></Label>  
         <Label x:Name="lblOrientation" Margin="0,0,0,10" HorizontalTextAlignment="Center"></Label>  
         <Label x:Name="lblRotation" Margin="0,0,0,10" HorizontalTextAlignment="Center"></Label>  
         <Label x:Name="lblWidth" Margin="0,0,0,10" HorizontalTextAlignment="Center"></Label>  
         <Label x:Name="lblHeight" Margin="0,0,0,10" HorizontalTextAlignment="Center"></Label>  
         <Label x:Name="lblDensity" Margin="0,0,0,10" HorizontalTextAlignment="Center"></Label>  
            
         </StackLayout>  
    </StackLayout>  
  
</ContentPage>