From ec68d403461ecc4134e783a973c3773493741e4e Mon Sep 17 00:00:00 2001 From: Kira Date: Mon, 28 Aug 2023 10:55:03 -0700 Subject: [PATCH] Add project files. --- ColorPlucker.sln | 27 ++ ColorPlucker/App.xaml | 14 + ColorPlucker/App.xaml.cs | 11 + ColorPlucker/AppShell.xaml | 14 + ColorPlucker/AppShell.xaml.cs | 9 + ColorPlucker/ColorPlucker.csproj | 55 +++ ColorPlucker/MainPage.xaml | 122 ++++++ ColorPlucker/MainPage.xaml.cs | 72 ++++ ColorPlucker/MauiProgram.cs | 24 ++ .../Platforms/Android/AndroidManifest.xml | 6 + .../Platforms/Android/MainActivity.cs | 10 + .../Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + .../Platforms/MacCatalyst/AppDelegate.cs | 9 + ColorPlucker/Platforms/MacCatalyst/Info.plist | 30 ++ ColorPlucker/Platforms/MacCatalyst/Program.cs | 15 + ColorPlucker/Platforms/Tizen/Main.cs | 16 + .../Platforms/Tizen/tizen-manifest.xml | 15 + ColorPlucker/Platforms/Windows/App.xaml | 8 + ColorPlucker/Platforms/Windows/App.xaml.cs | 24 ++ .../Platforms/Windows/Package.appxmanifest | 46 ++ ColorPlucker/Platforms/Windows/app.manifest | 15 + ColorPlucker/Platforms/iOS/AppDelegate.cs | 9 + ColorPlucker/Platforms/iOS/Info.plist | 32 ++ ColorPlucker/Platforms/iOS/Program.cs | 15 + ColorPlucker/Properties/launchSettings.json | 8 + ColorPlucker/Resources/AppIcon/appicon.svg | 4 + ColorPlucker/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107184 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111068 bytes ColorPlucker/Resources/Images/dotnet_bot.svg | 93 ++++ ColorPlucker/Resources/Raw/AboutAssets.txt | 15 + ColorPlucker/Resources/Splash/splash.svg | 8 + ColorPlucker/Resources/Styles/Colors.xaml | 44 ++ ColorPlucker/Resources/Styles/Styles.xaml | 405 ++++++++++++++++++ 35 files changed, 1204 insertions(+) create mode 100644 ColorPlucker.sln create mode 100644 ColorPlucker/App.xaml create mode 100644 ColorPlucker/App.xaml.cs create mode 100644 ColorPlucker/AppShell.xaml create mode 100644 ColorPlucker/AppShell.xaml.cs create mode 100644 ColorPlucker/ColorPlucker.csproj create mode 100644 ColorPlucker/MainPage.xaml create mode 100644 ColorPlucker/MainPage.xaml.cs create mode 100644 ColorPlucker/MauiProgram.cs create mode 100644 ColorPlucker/Platforms/Android/AndroidManifest.xml create mode 100644 ColorPlucker/Platforms/Android/MainActivity.cs create mode 100644 ColorPlucker/Platforms/Android/MainApplication.cs create mode 100644 ColorPlucker/Platforms/Android/Resources/values/colors.xml create mode 100644 ColorPlucker/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 ColorPlucker/Platforms/MacCatalyst/Info.plist create mode 100644 ColorPlucker/Platforms/MacCatalyst/Program.cs create mode 100644 ColorPlucker/Platforms/Tizen/Main.cs create mode 100644 ColorPlucker/Platforms/Tizen/tizen-manifest.xml create mode 100644 ColorPlucker/Platforms/Windows/App.xaml create mode 100644 ColorPlucker/Platforms/Windows/App.xaml.cs create mode 100644 ColorPlucker/Platforms/Windows/Package.appxmanifest create mode 100644 ColorPlucker/Platforms/Windows/app.manifest create mode 100644 ColorPlucker/Platforms/iOS/AppDelegate.cs create mode 100644 ColorPlucker/Platforms/iOS/Info.plist create mode 100644 ColorPlucker/Platforms/iOS/Program.cs create mode 100644 ColorPlucker/Properties/launchSettings.json create mode 100644 ColorPlucker/Resources/AppIcon/appicon.svg create mode 100644 ColorPlucker/Resources/AppIcon/appiconfg.svg create mode 100644 ColorPlucker/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 ColorPlucker/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 ColorPlucker/Resources/Images/dotnet_bot.svg create mode 100644 ColorPlucker/Resources/Raw/AboutAssets.txt create mode 100644 ColorPlucker/Resources/Splash/splash.svg create mode 100644 ColorPlucker/Resources/Styles/Colors.xaml create mode 100644 ColorPlucker/Resources/Styles/Styles.xaml diff --git a/ColorPlucker.sln b/ColorPlucker.sln new file mode 100644 index 0000000..5ddfcb3 --- /dev/null +++ b/ColorPlucker.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}") = "ColorPlucker", "ColorPlucker\ColorPlucker.csproj", "{55D66D79-702F-4F83-A578-84924AF669CB}" +EndProject +Global + GlobalSection(SolutionConfigurationPlatforms) = preSolution + Debug|Any CPU = Debug|Any CPU + Release|Any CPU = Release|Any CPU + EndGlobalSection + GlobalSection(ProjectConfigurationPlatforms) = postSolution + {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.ActiveCfg = Debug|Any CPU + {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.Build.0 = Debug|Any CPU + {55D66D79-702F-4F83-A578-84924AF669CB}.Debug|Any CPU.Deploy.0 = Debug|Any CPU + {55D66D79-702F-4F83-A578-84924AF669CB}.Release|Any CPU.ActiveCfg = Release|Any CPU + {55D66D79-702F-4F83-A578-84924AF669CB}.Release|Any CPU.Build.0 = Release|Any CPU + {55D66D79-702F-4F83-A578-84924AF669CB}.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/ColorPlucker/App.xaml b/ColorPlucker/App.xaml new file mode 100644 index 0000000..fc1d783 --- /dev/null +++ b/ColorPlucker/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/ColorPlucker/App.xaml.cs b/ColorPlucker/App.xaml.cs new file mode 100644 index 0000000..0433d53 --- /dev/null +++ b/ColorPlucker/App.xaml.cs @@ -0,0 +1,11 @@ +namespace ColorPlucker; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + + MainPage = new MainPage(); + } +} diff --git a/ColorPlucker/AppShell.xaml b/ColorPlucker/AppShell.xaml new file mode 100644 index 0000000..5c4d0b6 --- /dev/null +++ b/ColorPlucker/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/ColorPlucker/AppShell.xaml.cs b/ColorPlucker/AppShell.xaml.cs new file mode 100644 index 0000000..f1161fe --- /dev/null +++ b/ColorPlucker/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace ColorPlucker; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} diff --git a/ColorPlucker/ColorPlucker.csproj b/ColorPlucker/ColorPlucker.csproj new file mode 100644 index 0000000..471a78f --- /dev/null +++ b/ColorPlucker/ColorPlucker.csproj @@ -0,0 +1,55 @@ + + + + net7.0-android;net7.0-ios;net7.0-maccatalyst + $(TargetFrameworks);net7.0-windows10.0.19041.0 + + + Exe + ColorPlucker + true + true + enable + + + ColorPlucker + + + com.companyname.colorplucker + 9a35922e-5aa8-43b1-bcba-0ecb4777a908 + + + 1.0 + 1 + + 11.0 + 13.1 + 21.0 + 10.0.17763.0 + 10.0.17763.0 + 6.5 + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/ColorPlucker/MainPage.xaml b/ColorPlucker/MainPage.xaml new file mode 100644 index 0000000..b8aef70 --- /dev/null +++ b/ColorPlucker/MainPage.xaml @@ -0,0 +1,122 @@ + + + + + #FF87B2 + #E74646 + #FFF3E2 + #49D292 + #FAF1E4 + #19A7CE + #F6F1F1 + #916DD5 + #D89CF6 + #F0E3FF + + + + + + + + + + + +