From 926e475724d893cb3408a3941a01ffed629dd352 Mon Sep 17 00:00:00 2001 From: Vianney JOURDY Date: Thu, 30 Mar 2023 10:09:13 +0200 Subject: [PATCH] =?UTF-8?q?d=C3=A9but?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- MangaMap/App.xaml | 14 + MangaMap/App.xaml.cs | 11 + MangaMap/AppShell.xaml | 14 + MangaMap/AppShell.xaml.cs | 9 + MangaMap/MainPage.xaml | 88 ++++ MangaMap/MainPage.xaml.cs | 24 ++ MangaMap/MangaMap.csproj | 55 +++ MangaMap/MangaMap.sln | 27 ++ MangaMap/MauiProgram.cs | 24 ++ .../Platforms/Android/AndroidManifest.xml | 6 + MangaMap/Platforms/Android/MainActivity.cs | 10 + MangaMap/Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + MangaMap/Platforms/MacCatalyst/AppDelegate.cs | 9 + MangaMap/Platforms/MacCatalyst/Info.plist | 30 ++ MangaMap/Platforms/MacCatalyst/Program.cs | 15 + MangaMap/Platforms/Tizen/Main.cs | 16 + MangaMap/Platforms/Tizen/tizen-manifest.xml | 15 + MangaMap/Platforms/Windows/App.xaml | 8 + MangaMap/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ MangaMap/Platforms/Windows/app.manifest | 15 + MangaMap/Platforms/iOS/AppDelegate.cs | 9 + MangaMap/Platforms/iOS/Info.plist | 32 ++ MangaMap/Platforms/iOS/Program.cs | 15 + MangaMap/Properties/launchSettings.json | 8 + MangaMap/Resources/AppIcon/appicon.svg | 4 + MangaMap/Resources/AppIcon/appiconfg.svg | 8 + MangaMap/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107140 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes MangaMap/Resources/Images/dotnet_bot.svg | 93 ++++ MangaMap/Resources/Raw/AboutAssets.txt | 15 + MangaMap/Resources/Splash/splash.svg | 8 + MangaMap/Resources/Styles/Colors.xaml | 44 ++ MangaMap/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 35 files changed, 1122 insertions(+) create mode 100644 MangaMap/App.xaml create mode 100644 MangaMap/App.xaml.cs create mode 100644 MangaMap/AppShell.xaml create mode 100644 MangaMap/AppShell.xaml.cs create mode 100644 MangaMap/MainPage.xaml create mode 100644 MangaMap/MainPage.xaml.cs create mode 100644 MangaMap/MangaMap.csproj create mode 100644 MangaMap/MangaMap.sln create mode 100644 MangaMap/MauiProgram.cs create mode 100644 MangaMap/Platforms/Android/AndroidManifest.xml create mode 100644 MangaMap/Platforms/Android/MainActivity.cs create mode 100644 MangaMap/Platforms/Android/MainApplication.cs create mode 100644 MangaMap/Platforms/Android/Resources/values/colors.xml create mode 100644 MangaMap/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 MangaMap/Platforms/MacCatalyst/Info.plist create mode 100644 MangaMap/Platforms/MacCatalyst/Program.cs create mode 100644 MangaMap/Platforms/Tizen/Main.cs create mode 100644 MangaMap/Platforms/Tizen/tizen-manifest.xml create mode 100644 MangaMap/Platforms/Windows/App.xaml create mode 100644 MangaMap/Platforms/Windows/App.xaml.cs create mode 100644 MangaMap/Platforms/Windows/Package.appxmanifest create mode 100644 MangaMap/Platforms/Windows/app.manifest create mode 100644 MangaMap/Platforms/iOS/AppDelegate.cs create mode 100644 MangaMap/Platforms/iOS/Info.plist create mode 100644 MangaMap/Platforms/iOS/Program.cs create mode 100644 MangaMap/Properties/launchSettings.json create mode 100644 MangaMap/Resources/AppIcon/appicon.svg create mode 100644 MangaMap/Resources/AppIcon/appiconfg.svg create mode 100644 MangaMap/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 MangaMap/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 MangaMap/Resources/Images/dotnet_bot.svg create mode 100644 MangaMap/Resources/Raw/AboutAssets.txt create mode 100644 MangaMap/Resources/Splash/splash.svg create mode 100644 MangaMap/Resources/Styles/Colors.xaml create mode 100644 MangaMap/Resources/Styles/Styles.xaml diff --git a/MangaMap/App.xaml b/MangaMap/App.xaml new file mode 100644 index 0000000..449386f --- /dev/null +++ b/MangaMap/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/MangaMap/App.xaml.cs b/MangaMap/App.xaml.cs new file mode 100644 index 0000000..568d279 --- /dev/null +++ b/MangaMap/App.xaml.cs @@ -0,0 +1,11 @@ +namespace MangaMap; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/MangaMap/AppShell.xaml b/MangaMap/AppShell.xaml new file mode 100644 index 0000000..47aa3f9 --- /dev/null +++ b/MangaMap/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/MangaMap/AppShell.xaml.cs b/MangaMap/AppShell.xaml.cs new file mode 100644 index 0000000..123c12b --- /dev/null +++ b/MangaMap/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace MangaMap; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/MangaMap/MainPage.xaml b/MangaMap/MainPage.xaml new file mode 100644 index 0000000..4fc3ccf --- /dev/null +++ b/MangaMap/MainPage.xaml @@ -0,0 +1,88 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +