maui-linux/samples/ControlGallery/Pages/HomePage.xaml.cs

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");
}
}