<?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="CobaXamarin.MainPage">
<StackLayout>
<Frame BackgroundColor="#dba3f7" Padding="24" CornerRadius="0">
<Label Text="Welcome to Maisie\'s Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="#23032b" FontSize="36"/>
</Frame>
<Button Text="Click Me!" Clicked="ClickCounter"/>
<Label Text="Hello World!! Start developing now" FontSize="Title" Padding="30,10,30,10"/>
<Label Text="Make changes to your XAML file and save to see your UI update in the running app with XAML Hot Reload. Give it a try!" FontSize="16" Padding="30,0,30,0"/>
<Label FontSize="16" Padding="30,24,30,0">
<Label.FormattedText>
<FormattedString>
<FormattedString.Spans>
<Span Text="Learn more at "/>
<Span Text="https://aka.ms/xamarin-quickstart" FontAttributes="Bold"/>
<Span Text="https://messitidakmessy.blogspot.com/2021/05/tugas-5-mobile-application-menggunakan.html" FontAttributes="Bold"/>
</FormattedString.Spans>
</FormattedString>
</Label.FormattedText>
</Label>
</StackLayout>
</ContentPage>