Skip to content
Permalink
f84c178084
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
28 lines (22 sloc) 574 Bytes
using System;
using System.Collections.Generic;
using InfoBlog.Views;
using Xamarin.Forms;
namespace InfoBlog.Views
{
public partial class WelcomePage : ContentPage
{
public WelcomePage()
{
InitializeComponent();
}
void RegisterBtn(object sender, System.EventArgs e)
{
Navigation.PushAsync(new Register());
}
void LoginBtn(object Sender, System.EventArgs e)
{
Navigation.PushAsync(new Login());
}
}
}