Tugas 5 PBKK - Membuat Mobile Application Menggunakan Xamarin

 Membuat Mobile Application Menggunakan Xamarin

Tugas kali ini adalah membuat aplikasi Hello World dengan menggunakan Mobile Application Xamarin Form 

1. Install Mobile development with .NET di Visual Studio 2019

2. Buat project baru dengan menggunakan Mobile app (Xamarin.Forms)




3. Beri nama project dan pilih Template Blank



4. Setup emulatornya , referensi : Cara Setup Emulator

5. Lalu, ubah code di MainPage.xaml.cs & MainPage.xaml

Code :

- MainPage.xaml.cs

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
namespace HelloWorldMobile
{
public partial class MainPage : ContentPage
{
public MainPage()
{
InitializeComponent();
}
int count = 0;
void Handle_Clicked(object sender, System.EventArgs e)
{
count++;
((Button)sender).Text = $"You clicked {count} times.";
}
}
}

- MainPage.xaml


<?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="HelloWorldMobile.MainPage">
<StackLayout>
<Frame BackgroundColor="Aquamarine" Padding="24" CornerRadius="0">
<Label Text="Welcome to Xamarin.Forms!" HorizontalTextAlignment="Center" TextColor="Black" FontSize="36"/>
</Frame>
<Button Text="Click Me" Clicked="Handle_Clicked" />
<Label Text="Hello World!!" FontSize="Title" Padding="30,10,30,10"/>
<Label Text="Ini adalah aplikasi mobile Hello World dengan menggunakan Xamarin." FontSize="16" Padding="30,0,30,0"/>
<Label FontSize="16" Padding="30,24,30,0">
<Label.FormattedText>
<FormattedString>
<FormattedString.Spans>
<Span Text="Oleh : "/>
<Span Text="M. Frediansyah Sinaga - 05111840000028" FontAttributes="Bold"/>
</FormattedString.Spans>
</FormattedString>
</Label.FormattedText>
</Label>
</StackLayout>
</ContentPage>
view raw MainPage.xaml hosted with ❤ by GitHub
6. Jalankan Aplikasinya, dan berikut hasilnya :




Nama : M. Frediansyah Sinaga
NRP : 05111840000028
PBKK A


Comments

Popular Posts