Created
June 4, 2021 22:01
-
-
Save minons1/22ea604934336a2147cd2c41e5d15657 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?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="AmazingAwesomeApp.MainPage"> | |
<StackLayout> | |
<Frame BackgroundColor="Crimson" Padding="24" CornerRadius="0"> | |
<Label Text="Welcome to Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="White" FontSize="36"/> | |
</Frame> | |
<Button Text="Tekan Aku Teman" Clicked="Handle_Clicked" /> | |
<Label Text="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"/> | |
</FormattedString.Spans> | |
</FormattedString> | |
</Label.FormattedText> | |
</Label> | |
</StackLayout> | |
</ContentPage> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment