Skip to content
Permalink
add6e4d428
Switch branches/tags

Name already in use

A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
Go to file
 
 
Cannot retrieve contributors at this time
35 lines (28 sloc) 752 Bytes
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Xamarin.Forms;
using Xamarin.Forms.Xaml;
namespace Local
{
[XamlCompilation(XamlCompilationOptions.Compile)]
public partial class AboutTheAuthor : ContentPage
{
public int clickTotal { get; private set; }
public AboutTheAuthor()
{
InitializeComponent();
}
private async void RotateButton(object sender, EventArgs args)
{
await label.RelRotateTo(360, 1000);
}
private async void OnImageButtonClicked(object sender, EventArgs e)
{
await Navigation.PushAsync(new ImageView());
}
}
}