document.write('
Data hosted with ♥ by Pastebin.com - Download Raw - See Original
  1. <?xml version="1.0" encoding="utf-8" ?>
  2. <ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
  3.              xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4.              x:Class="CobaXamarin.MainPage">
  5.  
  6.     <StackLayout>
  7.         <Frame BackgroundColor="#dba3f7" Padding="24" CornerRadius="0">
  8.             <Label Text="Welcome to Maisie\'s Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="#23032b" FontSize="36"/>
  9.         </Frame>
  10.         <Button Text="Click Me!" Clicked="ClickCounter"/>
  11.         <Label Text="Hello World!! Start developing now" FontSize="Title" Padding="30,10,30,10"/>
  12.         <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"/>
  13.         <Label FontSize="16" Padding="30,24,30,0">
  14.             <Label.FormattedText>
  15.                 <FormattedString>
  16.                     <FormattedString.Spans>
  17.                         <Span Text="Learn more at "/>
  18.                         <Span Text="https://aka.ms/xamarin-quickstart" FontAttributes="Bold"/>
  19.                         <Span Text="https://messitidakmessy.blogspot.com/2021/05/tugas-5-mobile-application-menggunakan.html" FontAttributes="Bold"/>
  20.                     </FormattedString.Spans>
  21.                 </FormattedString>
  22.             </Label.FormattedText>
  23.         </Label>
  24.     </StackLayout>
  25.  
  26. </ContentPage>
  27.  
');