using Qwirkle.Views; using QwirkleClassLibrary; using QwirkleClassLibrary.Games; using Microsoft.Maui.Controls; using Qwirkle.Pages; namespace Qwirkle { public partial class MainPage : ContentPage { public MainPage() { InitializeComponent(); BindingContext = this; } public void OnInfoClicked(object sender, EventArgs e) { DisplayAlert("Game notification", "Enter minimun 2 player and max 4 player !", "Ok ! Lets's go !"); Navigation.PushAsync(new SetPlayers()); } } }