diff --git a/Minecraft 2.sln b/Minecraft 2.sln
new file mode 100644
index 0000000..530b3c8
--- /dev/null
+++ b/Minecraft 2.sln
@@ -0,0 +1,27 @@
+
+Microsoft Visual Studio Solution File, Format Version 12.00
+# Visual Studio Version 17
+VisualStudioVersion = 17.0.31611.283
+MinimumVisualStudioVersion = 10.0.40219.1
+Project("{FAE04EC0-301F-11D3-BF4B-00C04F79EFBC}") = "Vues", "Vues\Vues.csproj", "{6474A056-564C-44CE-910D-5B78BA1D8AAA}"
+EndProject
+Global
+ GlobalSection(SolutionConfigurationPlatforms) = preSolution
+ Debug|Any CPU = Debug|Any CPU
+ Release|Any CPU = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(ProjectConfigurationPlatforms) = postSolution
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.ActiveCfg = Debug|Any CPU
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.Build.0 = Debug|Any CPU
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Debug|Any CPU.Deploy.0 = Debug|Any CPU
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.ActiveCfg = Release|Any CPU
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.Build.0 = Release|Any CPU
+ {6474A056-564C-44CE-910D-5B78BA1D8AAA}.Release|Any CPU.Deploy.0 = Release|Any CPU
+ EndGlobalSection
+ GlobalSection(SolutionProperties) = preSolution
+ HideSolutionNode = FALSE
+ EndGlobalSection
+ GlobalSection(ExtensibilityGlobals) = postSolution
+ SolutionGuid = {61F7FB11-1E47-470C-91E2-47F8143E1572}
+ EndGlobalSection
+EndGlobal
diff --git a/Minecraft 2/App.xaml b/Minecraft 2/App.xaml
new file mode 100644
index 0000000..8055a5a
--- /dev/null
+++ b/Minecraft 2/App.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Minecraft 2/App.xaml.cs b/Minecraft 2/App.xaml.cs
new file mode 100644
index 0000000..3f393d7
--- /dev/null
+++ b/Minecraft 2/App.xaml.cs
@@ -0,0 +1,11 @@
+namespace Minecraft_2;
+
+public partial class App : Application
+{
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+}
diff --git a/Minecraft 2/AppShell.xaml b/Minecraft 2/AppShell.xaml
new file mode 100644
index 0000000..acf50a2
--- /dev/null
+++ b/Minecraft 2/AppShell.xaml
@@ -0,0 +1,14 @@
+
+
+
+
+
+
diff --git a/Minecraft 2/AppShell.xaml.cs b/Minecraft 2/AppShell.xaml.cs
new file mode 100644
index 0000000..6481df5
--- /dev/null
+++ b/Minecraft 2/AppShell.xaml.cs
@@ -0,0 +1,9 @@
+namespace Minecraft_2;
+
+public partial class AppShell : Shell
+{
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+}
diff --git a/Minecraft 2/MainPage.xaml b/Minecraft 2/MainPage.xaml
new file mode 100644
index 0000000..ae24fb7
--- /dev/null
+++ b/Minecraft 2/MainPage.xaml
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Minecraft 2/MainPage.xaml.cs b/Minecraft 2/MainPage.xaml.cs
new file mode 100644
index 0000000..3c6038d
--- /dev/null
+++ b/Minecraft 2/MainPage.xaml.cs
@@ -0,0 +1,24 @@
+namespace Minecraft_2;
+
+public partial class MainPage : ContentPage
+{
+ int count = 0;
+
+ public MainPage()
+ {
+ InitializeComponent();
+ }
+
+ private void OnCounterClicked(object sender, EventArgs e)
+ {
+ count++;
+
+ if (count == 1)
+ CounterBtn.Text = $"Clicked {count} time";
+ else
+ CounterBtn.Text = $"Clicked {count} times";
+
+ SemanticScreenReader.Announce(CounterBtn.Text);
+ }
+}
+
diff --git a/Minecraft 2/MauiProgram.cs b/Minecraft 2/MauiProgram.cs
new file mode 100644
index 0000000..d26e13b
--- /dev/null
+++ b/Minecraft 2/MauiProgram.cs
@@ -0,0 +1,24 @@
+using Microsoft.Extensions.Logging;
+
+namespace Minecraft_2;
+
+public static class MauiProgram
+{
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+}
diff --git a/Minecraft 2/Minecraft 2.csproj b/Minecraft 2/Minecraft 2.csproj
new file mode 100644
index 0000000..a9b1dff
--- /dev/null
+++ b/Minecraft 2/Minecraft 2.csproj
@@ -0,0 +1,55 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ Minecraft_2
+ true
+ true
+ enable
+
+
+ Minecraft 2
+
+
+ com.companyname.minecraft_2
+ 95b5e81d-5836-4e42-a822-f686ce14f7c5
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Minecraft 2/Platforms/Android/AndroidManifest.xml b/Minecraft 2/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..bdec9b5
--- /dev/null
+++ b/Minecraft 2/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Platforms/Android/MainActivity.cs b/Minecraft 2/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..726c401
--- /dev/null
+++ b/Minecraft 2/Platforms/Android/MainActivity.cs
@@ -0,0 +1,10 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Minecraft_2;
+
+[Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+public class MainActivity : MauiAppCompatActivity
+{
+}
diff --git a/Minecraft 2/Platforms/Android/MainApplication.cs b/Minecraft 2/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..4f54c26
--- /dev/null
+++ b/Minecraft 2/Platforms/Android/MainApplication.cs
@@ -0,0 +1,15 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Minecraft_2;
+
+[Application]
+public class MainApplication : MauiApplication
+{
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/Minecraft 2/Platforms/Android/Resources/values/colors.xml b/Minecraft 2/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/Minecraft 2/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Minecraft 2/Platforms/MacCatalyst/AppDelegate.cs b/Minecraft 2/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..9adef3f
--- /dev/null
+++ b/Minecraft 2/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace Minecraft_2;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/Minecraft 2/Platforms/MacCatalyst/Info.plist b/Minecraft 2/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..0690e47
--- /dev/null
+++ b/Minecraft 2/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Minecraft 2/Platforms/MacCatalyst/Program.cs b/Minecraft 2/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..c941a83
--- /dev/null
+++ b/Minecraft 2/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Minecraft_2;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/Minecraft 2/Platforms/Tizen/Main.cs b/Minecraft 2/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..e86cfc4
--- /dev/null
+++ b/Minecraft 2/Platforms/Tizen/Main.cs
@@ -0,0 +1,16 @@
+using System;
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+
+namespace Minecraft_2;
+
+class Program : MauiApplication
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+}
diff --git a/Minecraft 2/Platforms/Tizen/tizen-manifest.xml b/Minecraft 2/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..0427138
--- /dev/null
+++ b/Minecraft 2/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Platforms/Windows/App.xaml b/Minecraft 2/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..0522a83
--- /dev/null
+++ b/Minecraft 2/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Minecraft 2/Platforms/Windows/App.xaml.cs b/Minecraft 2/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..1bad372
--- /dev/null
+++ b/Minecraft 2/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace Minecraft_2.WinUI;
+
+///
+/// Provides application-specific behavior to supplement the default Application class.
+///
+public partial class App : MauiWinUIApplication
+{
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
+
diff --git a/Minecraft 2/Platforms/Windows/Package.appxmanifest b/Minecraft 2/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..4db107f
--- /dev/null
+++ b/Minecraft 2/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Minecraft 2/Platforms/Windows/app.manifest b/Minecraft 2/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..68e458f
--- /dev/null
+++ b/Minecraft 2/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Minecraft 2/Platforms/iOS/AppDelegate.cs b/Minecraft 2/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..9adef3f
--- /dev/null
+++ b/Minecraft 2/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,9 @@
+using Foundation;
+
+namespace Minecraft_2;
+
+[Register("AppDelegate")]
+public class AppDelegate : MauiUIApplicationDelegate
+{
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+}
diff --git a/Minecraft 2/Platforms/iOS/Info.plist b/Minecraft 2/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/Minecraft 2/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Minecraft 2/Platforms/iOS/Program.cs b/Minecraft 2/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..c941a83
--- /dev/null
+++ b/Minecraft 2/Platforms/iOS/Program.cs
@@ -0,0 +1,15 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Minecraft_2;
+
+public class Program
+{
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+}
diff --git a/Minecraft 2/Properties/launchSettings.json b/Minecraft 2/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/Minecraft 2/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Minecraft 2/Resources/AppIcon/appicon.svg b/Minecraft 2/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/Minecraft 2/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Resources/AppIcon/appiconfg.svg b/Minecraft 2/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Minecraft 2/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Resources/Fonts/OpenSans-Regular.ttf b/Minecraft 2/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..e248a95
Binary files /dev/null and b/Minecraft 2/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Minecraft 2/Resources/Fonts/OpenSans-Semibold.ttf b/Minecraft 2/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..dbc9572
Binary files /dev/null and b/Minecraft 2/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Minecraft 2/Resources/Images/dotnet_bot.svg b/Minecraft 2/Resources/Images/dotnet_bot.svg
new file mode 100644
index 0000000..51b1c33
--- /dev/null
+++ b/Minecraft 2/Resources/Images/dotnet_bot.svg
@@ -0,0 +1,93 @@
+
diff --git a/Minecraft 2/Resources/Raw/AboutAssets.txt b/Minecraft 2/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/Minecraft 2/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Minecraft 2/Resources/Splash/splash.svg b/Minecraft 2/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Minecraft 2/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Resources/Styles/Colors.xaml b/Minecraft 2/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..d183ec4
--- /dev/null
+++ b/Minecraft 2/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #512BD4
+ #DFD8F7
+ #2B0B98
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/Minecraft 2/Resources/Styles/Styles.xaml b/Minecraft 2/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..050b36c
--- /dev/null
+++ b/Minecraft 2/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/README.md b/README.md
index 72c8428..22fe68e 100644
--- a/README.md
+++ b/README.md
@@ -1,2 +1,8 @@
-# SAE_2.01_-_Developpement_dune_application
+SAE 2.01 : Développement d'une application en XAML et C#
+
+Blondeau Nicolas
+Doumir Fernandes Yannis
+
+L'application porte sur le thème de Minecraft. C'est un guide d'utilisation sur les monstres Minecraft.
+Il est possible de voir les statistiuques du monstre choisi
\ No newline at end of file
diff --git a/Vues/Accueil.xaml b/Vues/Accueil.xaml
new file mode 100644
index 0000000..4118dbf
--- /dev/null
+++ b/Vues/Accueil.xaml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Vues/Accueil.xaml.cs b/Vues/Accueil.xaml.cs
new file mode 100644
index 0000000..4ccf8b0
--- /dev/null
+++ b/Vues/Accueil.xaml.cs
@@ -0,0 +1,13 @@
+namespace Vues
+{
+ public partial class Accueil : ContentPage
+ {
+ int count = 0;
+
+ public Accueil()
+ {
+ InitializeComponent();
+ }
+
+ }
+}
\ No newline at end of file
diff --git a/Vues/App.xaml b/Vues/App.xaml
new file mode 100644
index 0000000..f057ad7
--- /dev/null
+++ b/Vues/App.xaml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Vues/App.xaml.cs b/Vues/App.xaml.cs
new file mode 100644
index 0000000..61b8f98
--- /dev/null
+++ b/Vues/App.xaml.cs
@@ -0,0 +1,12 @@
+namespace Vues
+{
+ public partial class App : Application
+ {
+ public App()
+ {
+ InitializeComponent();
+
+ MainPage = new AppShell();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/AppShell.xaml b/Vues/AppShell.xaml
new file mode 100644
index 0000000..c6d39ba
--- /dev/null
+++ b/Vues/AppShell.xaml
@@ -0,0 +1,31 @@
+
+
+
+
+
+
+
+
+
+
diff --git a/Vues/AppShell.xaml.cs b/Vues/AppShell.xaml.cs
new file mode 100644
index 0000000..ee3bf15
--- /dev/null
+++ b/Vues/AppShell.xaml.cs
@@ -0,0 +1,10 @@
+namespace Vues
+{
+ public partial class AppShell : Shell
+ {
+ public AppShell()
+ {
+ InitializeComponent();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/Connexion.xaml b/Vues/Connexion.xaml
new file mode 100644
index 0000000..5547c34
--- /dev/null
+++ b/Vues/Connexion.xaml
@@ -0,0 +1,40 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vues/Connexion.xaml.cs b/Vues/Connexion.xaml.cs
new file mode 100644
index 0000000..a406e9d
--- /dev/null
+++ b/Vues/Connexion.xaml.cs
@@ -0,0 +1,9 @@
+namespace Vues;
+
+public partial class Connexion : ContentPage
+{
+ public Connexion()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Favoris.xaml b/Vues/Favoris.xaml
new file mode 100644
index 0000000..2575a9d
--- /dev/null
+++ b/Vues/Favoris.xaml
@@ -0,0 +1,12 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vues/Favoris.xaml.cs b/Vues/Favoris.xaml.cs
new file mode 100644
index 0000000..9c5a4c7
--- /dev/null
+++ b/Vues/Favoris.xaml.cs
@@ -0,0 +1,9 @@
+namespace Vues;
+
+public partial class Favoris : ContentPage
+{
+ public Favoris()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Inscription.xaml b/Vues/Inscription.xaml
new file mode 100644
index 0000000..b4ba650
--- /dev/null
+++ b/Vues/Inscription.xaml
@@ -0,0 +1,47 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vues/Inscription.xaml.cs b/Vues/Inscription.xaml.cs
new file mode 100644
index 0000000..920d138
--- /dev/null
+++ b/Vues/Inscription.xaml.cs
@@ -0,0 +1,9 @@
+namespace Vues;
+
+public partial class Inscription : ContentPage
+{
+ public Inscription()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Vues/MauiProgram.cs b/Vues/MauiProgram.cs
new file mode 100644
index 0000000..5ff8a32
--- /dev/null
+++ b/Vues/MauiProgram.cs
@@ -0,0 +1,27 @@
+using CommunityToolkit.Maui;
+using Microsoft.Extensions.Logging;
+
+namespace Vues
+{
+ public static class MauiProgram
+ {
+ public static MauiApp CreateMauiApp()
+ {
+ var builder = MauiApp.CreateBuilder();
+ builder
+ .UseMauiApp()
+ .UseMauiCommunityToolkit()
+ .ConfigureFonts(fonts =>
+ {
+ fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular");
+ fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold");
+ });
+
+#if DEBUG
+ builder.Logging.AddDebug();
+#endif
+
+ return builder.Build();
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/PageConnexion.xaml b/Vues/PageConnexion.xaml
new file mode 100644
index 0000000..469b1da
--- /dev/null
+++ b/Vues/PageConnexion.xaml
@@ -0,0 +1,39 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vues/PageConnexion.xaml.cs b/Vues/PageConnexion.xaml.cs
new file mode 100644
index 0000000..22653fe
--- /dev/null
+++ b/Vues/PageConnexion.xaml.cs
@@ -0,0 +1,9 @@
+namespace Vues;
+
+public partial class PageConnexion : ContentPage
+{
+ public PageConnexion()
+ {
+ InitializeComponent();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Android/AndroidManifest.xml b/Vues/Platforms/Android/AndroidManifest.xml
new file mode 100644
index 0000000..bdec9b5
--- /dev/null
+++ b/Vues/Platforms/Android/AndroidManifest.xml
@@ -0,0 +1,6 @@
+
+
+
+
+
+
\ No newline at end of file
diff --git a/Vues/Platforms/Android/MainActivity.cs b/Vues/Platforms/Android/MainActivity.cs
new file mode 100644
index 0000000..d4c9690
--- /dev/null
+++ b/Vues/Platforms/Android/MainActivity.cs
@@ -0,0 +1,11 @@
+using Android.App;
+using Android.Content.PM;
+using Android.OS;
+
+namespace Vues
+{
+ [Activity(Theme = "@style/Maui.SplashTheme", MainLauncher = true, ConfigurationChanges = ConfigChanges.ScreenSize | ConfigChanges.Orientation | ConfigChanges.UiMode | ConfigChanges.ScreenLayout | ConfigChanges.SmallestScreenSize | ConfigChanges.Density)]
+ public class MainActivity : MauiAppCompatActivity
+ {
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Android/MainApplication.cs b/Vues/Platforms/Android/MainApplication.cs
new file mode 100644
index 0000000..c42f5ee
--- /dev/null
+++ b/Vues/Platforms/Android/MainApplication.cs
@@ -0,0 +1,16 @@
+using Android.App;
+using Android.Runtime;
+
+namespace Vues
+{
+ [Application]
+ public class MainApplication : MauiApplication
+ {
+ public MainApplication(IntPtr handle, JniHandleOwnership ownership)
+ : base(handle, ownership)
+ {
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Android/Resources/values/colors.xml b/Vues/Platforms/Android/Resources/values/colors.xml
new file mode 100644
index 0000000..5cd1604
--- /dev/null
+++ b/Vues/Platforms/Android/Resources/values/colors.xml
@@ -0,0 +1,6 @@
+
+
+ #512BD4
+ #2B0B98
+ #2B0B98
+
\ No newline at end of file
diff --git a/Vues/Platforms/MacCatalyst/AppDelegate.cs b/Vues/Platforms/MacCatalyst/AppDelegate.cs
new file mode 100644
index 0000000..cb5a134
--- /dev/null
+++ b/Vues/Platforms/MacCatalyst/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Vues
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/MacCatalyst/Info.plist b/Vues/Platforms/MacCatalyst/Info.plist
new file mode 100644
index 0000000..0690e47
--- /dev/null
+++ b/Vues/Platforms/MacCatalyst/Info.plist
@@ -0,0 +1,30 @@
+
+
+
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Vues/Platforms/MacCatalyst/Program.cs b/Vues/Platforms/MacCatalyst/Program.cs
new file mode 100644
index 0000000..1f6f3b1
--- /dev/null
+++ b/Vues/Platforms/MacCatalyst/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Vues
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Tizen/Main.cs b/Vues/Platforms/Tizen/Main.cs
new file mode 100644
index 0000000..ffe54fe
--- /dev/null
+++ b/Vues/Platforms/Tizen/Main.cs
@@ -0,0 +1,17 @@
+using Microsoft.Maui;
+using Microsoft.Maui.Hosting;
+using System;
+
+namespace Vues
+{
+ internal class Program : MauiApplication
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+
+ static void Main(string[] args)
+ {
+ var app = new Program();
+ app.Run(args);
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Tizen/tizen-manifest.xml b/Vues/Platforms/Tizen/tizen-manifest.xml
new file mode 100644
index 0000000..b9f5fb8
--- /dev/null
+++ b/Vues/Platforms/Tizen/tizen-manifest.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+ maui-appicon-placeholder
+
+
+
+
+ http://tizen.org/privilege/internet
+
+
+
+
\ No newline at end of file
diff --git a/Vues/Platforms/Windows/App.xaml b/Vues/Platforms/Windows/App.xaml
new file mode 100644
index 0000000..a30924a
--- /dev/null
+++ b/Vues/Platforms/Windows/App.xaml
@@ -0,0 +1,8 @@
+
+
+
diff --git a/Vues/Platforms/Windows/App.xaml.cs b/Vues/Platforms/Windows/App.xaml.cs
new file mode 100644
index 0000000..c88523c
--- /dev/null
+++ b/Vues/Platforms/Windows/App.xaml.cs
@@ -0,0 +1,24 @@
+using Microsoft.UI.Xaml;
+
+// To learn more about WinUI, the WinUI project structure,
+// and more about our project templates, see: http://aka.ms/winui-project-info.
+
+namespace Vues.WinUI
+{
+ ///
+ /// Provides application-specific behavior to supplement the default Application class.
+ ///
+ public partial class App : MauiWinUIApplication
+ {
+ ///
+ /// Initializes the singleton application object. This is the first line of authored code
+ /// executed, and as such is the logical equivalent of main() or WinMain().
+ ///
+ public App()
+ {
+ this.InitializeComponent();
+ }
+
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/Windows/Package.appxmanifest b/Vues/Platforms/Windows/Package.appxmanifest
new file mode 100644
index 0000000..84fdde8
--- /dev/null
+++ b/Vues/Platforms/Windows/Package.appxmanifest
@@ -0,0 +1,46 @@
+
+
+
+
+
+
+
+
+ $placeholder$
+ User Name
+ $placeholder$.png
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Vues/Platforms/Windows/app.manifest b/Vues/Platforms/Windows/app.manifest
new file mode 100644
index 0000000..9c0e47d
--- /dev/null
+++ b/Vues/Platforms/Windows/app.manifest
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+ true/PM
+ PerMonitorV2, PerMonitor
+
+
+
diff --git a/Vues/Platforms/iOS/AppDelegate.cs b/Vues/Platforms/iOS/AppDelegate.cs
new file mode 100644
index 0000000..cb5a134
--- /dev/null
+++ b/Vues/Platforms/iOS/AppDelegate.cs
@@ -0,0 +1,10 @@
+using Foundation;
+
+namespace Vues
+{
+ [Register("AppDelegate")]
+ public class AppDelegate : MauiUIApplicationDelegate
+ {
+ protected override MauiApp CreateMauiApp() => MauiProgram.CreateMauiApp();
+ }
+}
\ No newline at end of file
diff --git a/Vues/Platforms/iOS/Info.plist b/Vues/Platforms/iOS/Info.plist
new file mode 100644
index 0000000..358337b
--- /dev/null
+++ b/Vues/Platforms/iOS/Info.plist
@@ -0,0 +1,32 @@
+
+
+
+
+ LSRequiresIPhoneOS
+
+ UIDeviceFamily
+
+ 1
+ 2
+
+ UIRequiredDeviceCapabilities
+
+ arm64
+
+ UISupportedInterfaceOrientations
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ UISupportedInterfaceOrientations~ipad
+
+ UIInterfaceOrientationPortrait
+ UIInterfaceOrientationPortraitUpsideDown
+ UIInterfaceOrientationLandscapeLeft
+ UIInterfaceOrientationLandscapeRight
+
+ XSAppIconAssets
+ Assets.xcassets/appicon.appiconset
+
+
diff --git a/Vues/Platforms/iOS/Program.cs b/Vues/Platforms/iOS/Program.cs
new file mode 100644
index 0000000..1f6f3b1
--- /dev/null
+++ b/Vues/Platforms/iOS/Program.cs
@@ -0,0 +1,16 @@
+using ObjCRuntime;
+using UIKit;
+
+namespace Vues
+{
+ public class Program
+ {
+ // This is the main entry point of the application.
+ static void Main(string[] args)
+ {
+ // if you want to use a different Application Delegate class from "AppDelegate"
+ // you can specify it here.
+ UIApplication.Main(args, null, typeof(AppDelegate));
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/Properties/launchSettings.json b/Vues/Properties/launchSettings.json
new file mode 100644
index 0000000..c16206a
--- /dev/null
+++ b/Vues/Properties/launchSettings.json
@@ -0,0 +1,8 @@
+{
+ "profiles": {
+ "Windows Machine": {
+ "commandName": "MsixPackage",
+ "nativeDebugging": false
+ }
+ }
+}
\ No newline at end of file
diff --git a/Vues/Resources/AppIcon/appicon.svg b/Vues/Resources/AppIcon/appicon.svg
new file mode 100644
index 0000000..5f04fcf
--- /dev/null
+++ b/Vues/Resources/AppIcon/appicon.svg
@@ -0,0 +1,4 @@
+
+
\ No newline at end of file
diff --git a/Vues/Resources/AppIcon/appiconfg.svg b/Vues/Resources/AppIcon/appiconfg.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Vues/Resources/AppIcon/appiconfg.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Vues/Resources/Fonts/OpenSans-Regular.ttf b/Vues/Resources/Fonts/OpenSans-Regular.ttf
new file mode 100644
index 0000000..e248a95
Binary files /dev/null and b/Vues/Resources/Fonts/OpenSans-Regular.ttf differ
diff --git a/Vues/Resources/Fonts/OpenSans-Semibold.ttf b/Vues/Resources/Fonts/OpenSans-Semibold.ttf
new file mode 100644
index 0000000..dbc9572
Binary files /dev/null and b/Vues/Resources/Fonts/OpenSans-Semibold.ttf differ
diff --git a/Vues/Resources/Images/cadena.png b/Vues/Resources/Images/cadena.png
new file mode 100644
index 0000000..aa51954
Binary files /dev/null and b/Vues/Resources/Images/cadena.png differ
diff --git a/Vues/Resources/Images/home.png b/Vues/Resources/Images/home.png
new file mode 100644
index 0000000..f5b9354
Binary files /dev/null and b/Vues/Resources/Images/home.png differ
diff --git a/Vues/Resources/Images/searchicon.png b/Vues/Resources/Images/searchicon.png
new file mode 100644
index 0000000..f548faf
Binary files /dev/null and b/Vues/Resources/Images/searchicon.png differ
diff --git a/Vues/Resources/Images/star.png b/Vues/Resources/Images/star.png
new file mode 100644
index 0000000..cb45bbd
Binary files /dev/null and b/Vues/Resources/Images/star.png differ
diff --git a/Vues/Resources/Raw/AboutAssets.txt b/Vues/Resources/Raw/AboutAssets.txt
new file mode 100644
index 0000000..50b8a7b
--- /dev/null
+++ b/Vues/Resources/Raw/AboutAssets.txt
@@ -0,0 +1,15 @@
+Any raw assets you want to be deployed with your application can be placed in
+this directory (and child directories). Deployment of the asset to your application
+is automatically handled by the following `MauiAsset` Build Action within your `.csproj`.
+
+
+
+These files will be deployed with you package and will be accessible using Essentials:
+
+ async Task LoadMauiAsset()
+ {
+ using var stream = await FileSystem.OpenAppPackageFileAsync("AboutAssets.txt");
+ using var reader = new StreamReader(stream);
+
+ var contents = reader.ReadToEnd();
+ }
diff --git a/Vues/Resources/Splash/splash.svg b/Vues/Resources/Splash/splash.svg
new file mode 100644
index 0000000..62d66d7
--- /dev/null
+++ b/Vues/Resources/Splash/splash.svg
@@ -0,0 +1,8 @@
+
+
+
\ No newline at end of file
diff --git a/Vues/Resources/Styles/Colors.xaml b/Vues/Resources/Styles/Colors.xaml
new file mode 100644
index 0000000..94f7eb5
--- /dev/null
+++ b/Vues/Resources/Styles/Colors.xaml
@@ -0,0 +1,44 @@
+
+
+
+
+ #386641
+ #6a994e
+ #a7c957
+ White
+ Black
+ #E1E1E1
+ #C8C8C8
+ #ACACAC
+ #919191
+ #6E6E6E
+ #404040
+ #212121
+ #141414
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ #F7B548
+ #FFD590
+ #FFE5B9
+ #28C2D1
+ #7BDDEF
+ #C3F2F4
+ #3E8EED
+ #72ACF1
+ #A7CBF6
+
+
\ No newline at end of file
diff --git a/Vues/Resources/Styles/Styles.xaml b/Vues/Resources/Styles/Styles.xaml
new file mode 100644
index 0000000..050b36c
--- /dev/null
+++ b/Vues/Resources/Styles/Styles.xaml
@@ -0,0 +1,405 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/Vues/Vues.csproj b/Vues/Vues.csproj
new file mode 100644
index 0000000..20ee104
--- /dev/null
+++ b/Vues/Vues.csproj
@@ -0,0 +1,88 @@
+
+
+
+ net7.0-android;net7.0-ios;net7.0-maccatalyst
+ $(TargetFrameworks);net7.0-windows10.0.19041.0
+
+
+ Exe
+ Vues
+ true
+ true
+ enable
+
+
+ Vues
+
+
+ com.companyname.vues
+ 444a22d9-1f9b-4b50-953f-50131a83c207
+
+
+ 1.0
+ 1
+
+ 11.0
+ 13.1
+ 21.0
+ 10.0.17763.0
+ 10.0.17763.0
+ 6.5
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Accueil.xaml
+
+
+ Favoris.xaml
+
+
+ Connexion.xaml
+
+
+ Inscription.xaml
+
+
+ PageConnexion.xaml
+
+
+
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+ MSBuild:Compile
+
+
+
+
diff --git a/Vues/Vues.zip b/Vues/Vues.zip
new file mode 100644
index 0000000..29fef0a
Binary files /dev/null and b/Vues/Vues.zip differ