Correction de conflit

pull/23/head
Rémi LAVERGNE 2 years ago
parent 77ad582f6a
commit 30da9d3dbd

Binary file not shown.

@ -39,13 +39,17 @@
/>
<Label
Text="Pseudo"
Text="Pseudonyme"
FontFamily="AladinRegular"
FontSize="18"
Grid.Row="1"
HorizontalOptions="Start"
VerticalOptions="Center"
/>
VerticalOptions="Center">
<Label.GestureRecognizers>
<TapGestureRecognizer Tapped="OnProfil_Tapped"/>
</Label.GestureRecognizers>
</Label>
</HorizontalStackLayout>
<StackLayout HorizontalOptions="Center" VerticalOptions="Center" Grid.Row="2">

@ -6,7 +6,8 @@ namespace GameAtlas.Views;
public partial class PageAcceuil : ContentPage
{
public Manager Manager => (App.Current as App).MyManager;
public Manager AccueilManager => (App.Current as App).MyManager;
public PageAcceuil()
{
@ -14,6 +15,11 @@ public partial class PageAcceuil : ContentPage
}
private async void OnProfil_Tapped(object sender, EventArgs e)
{
await Navigation.PushAsync(new PageProfil());
}
private async void OnButtonClicked(object sender, EventArgs e)
{
await Shell.Current.Navigation.PushAsync(new PageJeu());

Loading…
Cancel
Save