15 lines
286 B
C#
15 lines
286 B
C#
|
|
namespace ControlGallery.Pages;
|
||
|
|
|
||
|
|
public partial class HomePage : ContentPage
|
||
|
|
{
|
||
|
|
public HomePage()
|
||
|
|
{
|
||
|
|
InitializeComponent();
|
||
|
|
}
|
||
|
|
|
||
|
|
private async void OnGetStartedClicked(object sender, EventArgs e)
|
||
|
|
{
|
||
|
|
await Shell.Current.GoToAsync("//ButtonsPage");
|
||
|
|
}
|
||
|
|
}
|