diff --git a/GameAtlas/.vs/GameAtlas/v17/.suo b/GameAtlas/.vs/GameAtlas/v17/.suo
index 74a45f8..99a6c51 100644
Binary files a/GameAtlas/.vs/GameAtlas/v17/.suo and b/GameAtlas/.vs/GameAtlas/v17/.suo differ
diff --git a/GameAtlas/GameAtlas/AppShell.xaml b/GameAtlas/GameAtlas/AppShell.xaml
index 3a25531..34d5d30 100644
--- a/GameAtlas/GameAtlas/AppShell.xaml
+++ b/GameAtlas/GameAtlas/AppShell.xaml
@@ -4,38 +4,39 @@
xmlns="http://schemas.microsoft.com/dotnet/2021/maui"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:views="clr-namespace:GameAtlas.Views"
- Shell.FlyoutBehavior="Disabled">
+ Shell.FlyoutBehavior="Disabled"
+ Shell.NavBarIsVisible="False">
-
-
-
-
-
-
-
-
-
-
-
-
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/GameAtlas/GameAtlas/AppShell.xaml.cs b/GameAtlas/GameAtlas/AppShell.xaml.cs
index 79fbbfd..c70d1f2 100644
--- a/GameAtlas/GameAtlas/AppShell.xaml.cs
+++ b/GameAtlas/GameAtlas/AppShell.xaml.cs
@@ -1,9 +1,13 @@
-namespace GameAtlas;
+using GameAtlas.Views;
+
+namespace GameAtlas;
public partial class AppShell : Shell
{
public AppShell()
{
InitializeComponent();
- }
+
+ Routing.RegisterRoute(nameof(PageJeu), typeof(PageJeu));
+ }
}
diff --git a/GameAtlas/GameAtlas/GameAtlas.csproj b/GameAtlas/GameAtlas/GameAtlas.csproj
index 57ba96c..9797e28 100644
--- a/GameAtlas/GameAtlas/GameAtlas.csproj
+++ b/GameAtlas/GameAtlas/GameAtlas.csproj
@@ -1,6 +1,11 @@
-
+
+
+
+ True
+ C:\Apps\GameAtlas
+
net7.0-android;net7.0-ios;net7.0-maccatalyst
$(TargetFrameworks);net7.0-windows10.0.19041.0
@@ -15,7 +20,7 @@
GameAtlas
- com.companyname.gameatlas
+ com.iut-clermont-auvergne.gameatlas
a4373575-ecb5-4bcd-9c57-7366fb6946a7
diff --git a/GameAtlas/GameAtlas/GameAtlas.csproj.user b/GameAtlas/GameAtlas/GameAtlas.csproj.user
index 7ebefc9..ac890c6 100644
--- a/GameAtlas/GameAtlas/GameAtlas.csproj.user
+++ b/GameAtlas/GameAtlas/GameAtlas.csproj.user
@@ -3,7 +3,7 @@
False
net7.0-android
- Pixel 5 - API 33 (1) (Android 13.0 - API 33)
+ Xiaomi 2201117SY (Android 12.0 - API 31)
PhysicalDevice
pixel_5_-_api_33_1
diff --git a/GameAtlas/GameAtlas/Views/PageProfil.xaml.cs b/GameAtlas/GameAtlas/Views/PageProfil.xaml.cs
index 8dd1ce5..6815f67 100644
--- a/GameAtlas/GameAtlas/Views/PageProfil.xaml.cs
+++ b/GameAtlas/GameAtlas/Views/PageProfil.xaml.cs
@@ -9,6 +9,6 @@ public partial class PageProfil : ContentPage
async void OnGame_Tapped(System.Object sender, Microsoft.Maui.Controls.TappedEventArgs e)
{
- await Shell.Current.GoToAsync(nameof(DetailPage));
+ await Shell.Current.GoToAsync(nameof(PageJeu));
}
}
\ No newline at end of file