diff --git a/Sources/Stim/DetailledPage.xaml.cs b/Sources/Stim/DetailledPage.xaml.cs index 57e7de1..68acc78 100644 --- a/Sources/Stim/DetailledPage.xaml.cs +++ b/Sources/Stim/DetailledPage.xaml.cs @@ -1,6 +1,5 @@ using CommunityToolkit.Maui.Views; using Model; -using StimPersistance; namespace Stim; @@ -18,9 +17,9 @@ public partial class DetailledPage : ContentPage await Navigation.PushModalAsync(new MainPage()); } - private void AddReview(object sender, EventArgs e) + private async void AddReview(object sender, EventArgs e) { - //popup add review + await this.ShowPopupAsync(new ReviewPopUp((App.Current as App).Manager.SelectedGame)); } private async void AddFollow(object sender, EventArgs e) diff --git a/Sources/Stim/LoginPage.xaml b/Sources/Stim/LoginPage.xaml index 6834cf9..b448d5f 100644 --- a/Sources/Stim/LoginPage.xaml +++ b/Sources/Stim/LoginPage.xaml @@ -1,8 +1,8 @@ - - + + @@ -25,7 +25,7 @@ Grid.Row="1" ClearButtonVisibility="WhileEditing" Text="anthony5"/> - +