<?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="HelloXamarin.MainPage">
<StackLayout>
<Frame BackgroundColor="#2196F3" Padding="24" CornerRadius="0">
<Label Text="You clicked 0 times." x:Name="label" HorizontalTextAlignment="Center" TextColor="White" FontSize="24"/>
</Frame>
<Label Text="Hello World!" FontSize="Title" Padding="30,10,30,10"/>
<Label Text="Click the button below to see something cool. Give it a try!" FontSize="16" Padding="30,0,30,0"/>
<Button Text="Click Me" Clicked="Handle_Clicked" Margin="30,10,30,0"/>
</StackLayout>
</ContentPage>