You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

31 lines
751 B

namespace CanYouBuildIt.Views;
public partial class Credits : ContentPage
{
public Credits()
{
InitializeComponent();
}
private async void BackHome(object sender, EventArgs e)
{
await Navigation.PopAsync();
}
private async void lienLDLC(object sender, EventArgs e)
{
await Launcher.OpenAsync(new Uri("https://www.ldlc.com/configurateur/"));
}
private async void lienCanYou(object sender, EventArgs e)
{
await Launcher.OpenAsync(new Uri("https://www.systemrequirementslab.com/cyri"));
}
private async void lienDenicheur(object sender, EventArgs e)
{
await Launcher.OpenAsync(new Uri("https://ledenicheur.fr/"));
}
}