From 48b0922b675c82250adc43dbdad99e7a4c839e0d Mon Sep 17 00:00:00 2001 From: Jade VAN BRABANDT Date: Wed, 22 Mar 2023 17:16:50 +0100 Subject: [PATCH] UwU --- Sources/Stim/Stim.sln | 27 ++ Sources/Stim/Stim/App.xaml | 14 + Sources/Stim/Stim/App.xaml.cs | 11 + Sources/Stim/Stim/AppShell.xaml | 14 + Sources/Stim/Stim/AppShell.xaml.cs | 9 + Sources/Stim/Stim/MainPage.xaml | 48 +++ Sources/Stim/Stim/MainPage.xaml.cs | 29 ++ Sources/Stim/Stim/MauiProgram.cs | 18 + .../Platforms/Android/AndroidManifest.xml | 6 + .../Stim/Platforms/Android/MainActivity.cs | 10 + .../Stim/Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Stim/Platforms/MacCatalyst/AppDelegate.cs | 9 + .../Stim/Platforms/MacCatalyst/Info.plist | 30 ++ .../Stim/Platforms/MacCatalyst/Program.cs | 15 + Sources/Stim/Stim/Platforms/Tizen/Main.cs | 16 + .../Stim/Platforms/Tizen/tizen-manifest.xml | 15 + Sources/Stim/Stim/Platforms/Windows/App.xaml | 8 + .../Stim/Stim/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 +++ .../Stim/Stim/Platforms/Windows/app.manifest | 15 + .../Stim/Stim/Platforms/iOS/AppDelegate.cs | 9 + Sources/Stim/Stim/Platforms/iOS/Info.plist | 32 ++ Sources/Stim/Stim/Platforms/iOS/Program.cs | 15 + .../Stim/Stim/Properties/launchSettings.json | 8 + .../Stim/Stim/Resources/AppIcon/appicon.svg | 4 + .../Stim/Stim/Resources/AppIcon/appiconfg.svg | 8 + .../Stim/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107180 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111036 bytes .../Stim/Stim/Resources/Images/dotnet_bot.svg | 93 +++++ .../Stim/Stim/Resources/Raw/AboutAssets.txt | 15 + Sources/Stim/Stim/Resources/Splash/splash.svg | 8 + .../Stim/Stim/Resources/Styles/Colors.xaml | 44 ++ .../Stim/Stim/Resources/Styles/Styles.xaml | 384 ++++++++++++++++++ Sources/Stim/Stim/Stim.csproj | 51 +++ 35 files changed, 1056 insertions(+) create mode 100644 Sources/Stim/Stim.sln create mode 100644 Sources/Stim/Stim/App.xaml create mode 100644 Sources/Stim/Stim/App.xaml.cs create mode 100644 Sources/Stim/Stim/AppShell.xaml create mode 100644 Sources/Stim/Stim/AppShell.xaml.cs create mode 100644 Sources/Stim/Stim/MainPage.xaml create mode 100644 Sources/Stim/Stim/MainPage.xaml.cs create mode 100644 Sources/Stim/Stim/MauiProgram.cs create mode 100644 Sources/Stim/Stim/Platforms/Android/AndroidManifest.xml create mode 100644 Sources/Stim/Stim/Platforms/Android/MainActivity.cs create mode 100644 Sources/Stim/Stim/Platforms/Android/MainApplication.cs create mode 100644 Sources/Stim/Stim/Platforms/Android/Resources/values/colors.xml create mode 100644 Sources/Stim/Stim/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Sources/Stim/Stim/Platforms/MacCatalyst/Info.plist create mode 100644 Sources/Stim/Stim/Platforms/MacCatalyst/Program.cs create mode 100644 Sources/Stim/Stim/Platforms/Tizen/Main.cs create mode 100644 Sources/Stim/Stim/Platforms/Tizen/tizen-manifest.xml create mode 100644 Sources/Stim/Stim/Platforms/Windows/App.xaml create mode 100644 Sources/Stim/Stim/Platforms/Windows/App.xaml.cs create mode 100644 Sources/Stim/Stim/Platforms/Windows/Package.appxmanifest create mode 100644 Sources/Stim/Stim/Platforms/Windows/app.manifest create mode 100644 Sources/Stim/Stim/Platforms/iOS/AppDelegate.cs create mode 100644 Sources/Stim/Stim/Platforms/iOS/Info.plist create mode 100644 Sources/Stim/Stim/Platforms/iOS/Program.cs create mode 100644 Sources/Stim/Stim/Properties/launchSettings.json create mode 100644 Sources/Stim/Stim/Resources/AppIcon/appicon.svg create mode 100644 Sources/Stim/Stim/Resources/AppIcon/appiconfg.svg create mode 100644 Sources/Stim/Stim/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Sources/Stim/Stim/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Sources/Stim/Stim/Resources/Images/dotnet_bot.svg create mode 100644 Sources/Stim/Stim/Resources/Raw/AboutAssets.txt create mode 100644 Sources/Stim/Stim/Resources/Splash/splash.svg create mode 100644 Sources/Stim/Stim/Resources/Styles/Colors.xaml create mode 100644 Sources/Stim/Stim/Resources/Styles/Styles.xaml create mode 100644 Sources/Stim/Stim/Stim.csproj diff --git a/Sources/Stim/Stim.sln b/Sources/Stim/Stim.sln new file mode 100644 index 0000000..f15be14 --- /dev/null +++ b/Sources/Stim/Stim.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("{9A19103F-16F7-4668-BE54-9A1E7A4F7556}") = "Stim", "Stim\Stim.csproj", "{88365436-AFDF-4183-B010-C13784779E6B}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.Build.0 = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Release|Any CPU.ActiveCfg = Release|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.Release|Any CPU.Build.0 = Release|Any CPU + {88365436-AFDF-4183-B010-C13784779E6B}.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/Sources/Stim/Stim/App.xaml b/Sources/Stim/Stim/App.xaml new file mode 100644 index 0000000..0a0a4fe --- /dev/null +++ b/Sources/Stim/Stim/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/Sources/Stim/Stim/App.xaml.cs b/Sources/Stim/Stim/App.xaml.cs new file mode 100644 index 0000000..5a94200 --- /dev/null +++ b/Sources/Stim/Stim/App.xaml.cs @@ -0,0 +1,11 @@ +namespace Stim; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } +} diff --git a/Sources/Stim/Stim/AppShell.xaml b/Sources/Stim/Stim/AppShell.xaml new file mode 100644 index 0000000..5499c11 --- /dev/null +++ b/Sources/Stim/Stim/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/Sources/Stim/Stim/AppShell.xaml.cs b/Sources/Stim/Stim/AppShell.xaml.cs new file mode 100644 index 0000000..69f710c --- /dev/null +++ b/Sources/Stim/Stim/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace Stim; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/Sources/Stim/Stim/MainPage.xaml b/Sources/Stim/Stim/MainPage.xaml new file mode 100644 index 0000000..19943d5 --- /dev/null +++ b/Sources/Stim/Stim/MainPage.xaml @@ -0,0 +1,48 @@ + + + + + + + + +