From 635cf25d5218ca5312e75f5de1e7df81bbc39adf Mon Sep 17 00:00:00 2001 From: "yannis.doumir_fernandes" Date: Fri, 21 Apr 2023 12:56:35 +0200 Subject: [PATCH] ADD/MODIFY ajout page collection + page searchpage fini --- Collection/App.xaml | 14 + Collection/App.xaml.cs | 12 + Collection/AppShell.xaml | 14 + Collection/AppShell.xaml.cs | 10 + Collection/Collection.csproj | 55 +++ Collection/MainPage.xaml | 41 ++ Collection/MainPage.xaml.cs | 24 ++ Collection/MauiProgram.cs | 25 ++ .../Platforms/Android/AndroidManifest.xml | 6 + Collection/Platforms/Android/MainActivity.cs | 11 + .../Platforms/Android/MainApplication.cs | 16 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 10 + Collection/Platforms/MacCatalyst/Info.plist | 30 ++ Collection/Platforms/MacCatalyst/Program.cs | 16 + Collection/Platforms/Tizen/Main.cs | 17 + Collection/Platforms/Tizen/tizen-manifest.xml | 15 + Collection/Platforms/Windows/App.xaml | 8 + Collection/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ Collection/Platforms/Windows/app.manifest | 15 + Collection/Platforms/iOS/AppDelegate.cs | 10 + Collection/Platforms/iOS/Info.plist | 32 ++ Collection/Platforms/iOS/Program.cs | 16 + Collection/Properties/launchSettings.json | 8 + Collection/Resources/AppIcon/appicon.svg | 4 + Collection/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107124 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111016 bytes Collection/Resources/Images/dotnet_bot.svg | 93 ++++ Collection/Resources/Raw/AboutAssets.txt | 15 + Collection/Resources/Splash/splash.svg | 8 + Collection/Resources/Styles/Colors.xaml | 44 ++ Collection/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ Vues/AppShell.xaml | 4 + Vues/Collection.xaml | 56 +++ Vues/Collection.xaml.cs | 9 + Vues/Resources/Images/backcollection.jpg | Bin 0 -> 1180449 bytes Vues/Resources/Images/cartedragon.png | Bin 0 -> 756589 bytes Vues/SearchMob.xaml | 101 +++-- Vues/SearchMob.xaml.cs | 5 + Vues/Vues.csproj | 6 + 42 files changed, 1195 insertions(+), 44 deletions(-) create mode 100644 Collection/App.xaml create mode 100644 Collection/App.xaml.cs create mode 100644 Collection/AppShell.xaml create mode 100644 Collection/AppShell.xaml.cs create mode 100644 Collection/Collection.csproj create mode 100644 Collection/MainPage.xaml create mode 100644 Collection/MainPage.xaml.cs create mode 100644 Collection/MauiProgram.cs create mode 100644 Collection/Platforms/Android/AndroidManifest.xml create mode 100644 Collection/Platforms/Android/MainActivity.cs create mode 100644 Collection/Platforms/Android/MainApplication.cs create mode 100644 Collection/Platforms/Android/Resources/values/colors.xml create mode 100644 Collection/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Collection/Platforms/MacCatalyst/Info.plist create mode 100644 Collection/Platforms/MacCatalyst/Program.cs create mode 100644 Collection/Platforms/Tizen/Main.cs create mode 100644 Collection/Platforms/Tizen/tizen-manifest.xml create mode 100644 Collection/Platforms/Windows/App.xaml create mode 100644 Collection/Platforms/Windows/App.xaml.cs create mode 100644 Collection/Platforms/Windows/Package.appxmanifest create mode 100644 Collection/Platforms/Windows/app.manifest create mode 100644 Collection/Platforms/iOS/AppDelegate.cs create mode 100644 Collection/Platforms/iOS/Info.plist create mode 100644 Collection/Platforms/iOS/Program.cs create mode 100644 Collection/Properties/launchSettings.json create mode 100644 Collection/Resources/AppIcon/appicon.svg create mode 100644 Collection/Resources/AppIcon/appiconfg.svg create mode 100644 Collection/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Collection/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Collection/Resources/Images/dotnet_bot.svg create mode 100644 Collection/Resources/Raw/AboutAssets.txt create mode 100644 Collection/Resources/Splash/splash.svg create mode 100644 Collection/Resources/Styles/Colors.xaml create mode 100644 Collection/Resources/Styles/Styles.xaml create mode 100644 Vues/Collection.xaml create mode 100644 Vues/Collection.xaml.cs create mode 100644 Vues/Resources/Images/backcollection.jpg create mode 100644 Vues/Resources/Images/cartedragon.png diff --git a/Collection/App.xaml b/Collection/App.xaml new file mode 100644 index 0000000..4445ba7 --- /dev/null +++ b/Collection/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Collection/App.xaml.cs b/Collection/App.xaml.cs new file mode 100644 index 0000000..5da71c7 --- /dev/null +++ b/Collection/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Collection +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} \ No newline at end of file diff --git a/Collection/AppShell.xaml b/Collection/AppShell.xaml new file mode 100644 index 0000000..3bac12c --- /dev/null +++ b/Collection/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Collection/AppShell.xaml.cs b/Collection/AppShell.xaml.cs new file mode 100644 index 0000000..a4a9227 --- /dev/null +++ b/Collection/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Collection +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} \ No newline at end of file diff --git a/Collection/Collection.csproj b/Collection/Collection.csproj new file mode 100644 index 0000000..42185d7 --- /dev/null +++ b/Collection/Collection.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + Collection + true + true + enable + + + Collection + + + com.companyname.collection + b90c946f-bdf3-4912-b4de-e1ebb8d39c03 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/Collection/MainPage.xaml b/Collection/MainPage.xaml new file mode 100644 index 0000000..ed6f0a4 --- /dev/null +++ b/Collection/MainPage.xaml @@ -0,0 +1,41 @@ + + + + + + + + +