Posts

Showing posts from July, 2021

Mobile menggunakan xamarin

Image
Berikut langkah - langkah membuat aplikasi xamarin secara sederhana di visual studio 1. Buat Project   Xamarin.Forms 2. Berikut untuk kode  MainPage.xml 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 <? 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 = "AmazingApp.MainPage" >      < StackLayout >          < Frame BackgroundColor = "#2196F3" Padding = "24" CornerRadius = "0" >              < Label Text = "Welcome to Xamarin.Forms!" HorizontalTextAlignment = "Center" TextColor = "White" FontSize = "36" />          </ Frame >            < Button Text = "Click Me!" Clicked = "ClickCounter" />          < Label Text = "H