From 4fe7523eaaae90ecb894f28f7d84ec781140bff2 Mon Sep 17 00:00:00 2001 From: KPK Student Date: Fri, 28 Feb 2025 08:58:58 +0300 Subject: [PATCH] first commit --- App.xaml | 14 + App.xaml.cs | 12 + AppShell.xaml | 15 + AppShell.xaml.cs | 10 + MainPage.xaml | 36 ++ MainPage.xaml.cs | 25 ++ MauiProgram.cs | 25 ++ Platforms/Android/AndroidManifest.xml | 6 + Platforms/Android/MainActivity.cs | 11 + Platforms/Android/MainApplication.cs | 16 + Platforms/Android/Resources/values/colors.xml | 6 + Platforms/MacCatalyst/AppDelegate.cs | 10 + Platforms/MacCatalyst/Entitlements.plist | 14 + Platforms/MacCatalyst/Info.plist | 38 ++ Platforms/MacCatalyst/Program.cs | 16 + Platforms/Tizen/Main.cs | 17 + Platforms/Tizen/tizen-manifest.xml | 15 + Platforms/Windows/App.xaml | 8 + Platforms/Windows/App.xaml.cs | 25 ++ Platforms/Windows/Package.appxmanifest | 46 +++ Platforms/Windows/app.manifest | 15 + Platforms/iOS/AppDelegate.cs | 10 + Platforms/iOS/Info.plist | 32 ++ Platforms/iOS/Program.cs | 16 + Proj.csproj | 65 ++++ Proj.csproj.user | 31 ++ Properties/launchSettings.json | 8 + README.md | 0 Resources/AppIcon/appicon.svg | 4 + Resources/AppIcon/appiconfg.svg | 8 + Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107168 bytes Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111056 bytes Resources/Images/dotnet_bot.png | Bin 0 -> 69811 bytes Resources/Raw/AboutAssets.txt | 15 + Resources/Splash/splash.svg | 8 + Resources/Styles/Colors.xaml | 45 +++ Resources/Styles/Styles.xaml | 426 +++++++++++++++++++++ obj/Debug/net8.0-android/Proj.GlobalUsings.g.cs | 11 + .../.NETCoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../iossimulator-x64/Proj.AssemblyInfo.cs | 25 ++ .../iossimulator-x64/Proj.AssemblyInfoInputs.cache | 1 + .../Proj.GeneratedMSBuildEditorConfig.editorconfig | 13 + .../iossimulator-x64/Proj.GlobalUsings.g.cs | 11 + .../net8.0-ios/iossimulator-x64/Proj.nfloat.g.cs | 3 + .../.NETCoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../maccatalyst-x64/Proj.AssemblyInfo.cs | 25 ++ .../maccatalyst-x64/Proj.AssemblyInfoInputs.cache | 1 + .../Proj.GeneratedMSBuildEditorConfig.editorconfig | 13 + .../maccatalyst-x64/Proj.GlobalUsings.g.cs | 11 + .../maccatalyst-x64/Proj.nfloat.g.cs | 3 + .../.NETCoreApp,Version=v8.0.AssemblyAttributes.cs | 4 + .../win10-x64/Proj.AssemblyInfo.cs | 25 ++ .../win10-x64/Proj.AssemblyInfoInputs.cache | 1 + .../Proj.GeneratedMSBuildEditorConfig.editorconfig | 13 + .../win10-x64/Proj.GlobalUsings.g.cs | 8 + 55 files changed, 1224 insertions(+) create mode 100644 App.xaml create mode 100644 App.xaml.cs create mode 100644 AppShell.xaml create mode 100644 AppShell.xaml.cs create mode 100644 MainPage.xaml create mode 100644 MainPage.xaml.cs create mode 100644 MauiProgram.cs create mode 100644 Platforms/Android/AndroidManifest.xml create mode 100644 Platforms/Android/MainActivity.cs create mode 100644 Platforms/Android/MainApplication.cs create mode 100644 Platforms/Android/Resources/values/colors.xml create mode 100644 Platforms/MacCatalyst/AppDelegate.cs create mode 100644 Platforms/MacCatalyst/Entitlements.plist create mode 100644 Platforms/MacCatalyst/Info.plist create mode 100644 Platforms/MacCatalyst/Program.cs create mode 100644 Platforms/Tizen/Main.cs create mode 100644 Platforms/Tizen/tizen-manifest.xml create mode 100644 Platforms/Windows/App.xaml create mode 100644 Platforms/Windows/App.xaml.cs create mode 100644 Platforms/Windows/Package.appxmanifest create mode 100644 Platforms/Windows/app.manifest create mode 100644 Platforms/iOS/AppDelegate.cs create mode 100644 Platforms/iOS/Info.plist create mode 100644 Platforms/iOS/Program.cs create mode 100644 Proj.csproj create mode 100644 Proj.csproj.user create mode 100644 Properties/launchSettings.json create mode 100644 README.md create mode 100644 Resources/AppIcon/appicon.svg create mode 100644 Resources/AppIcon/appiconfg.svg create mode 100644 Resources/Fonts/OpenSans-Regular.ttf create mode 100644 Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 Resources/Images/dotnet_bot.png create mode 100644 Resources/Raw/AboutAssets.txt create mode 100644 Resources/Splash/splash.svg create mode 100644 Resources/Styles/Colors.xaml create mode 100644 Resources/Styles/Styles.xaml create mode 100644 obj/Debug/net8.0-android/Proj.GlobalUsings.g.cs create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/Proj.AssemblyInfo.cs create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/Proj.AssemblyInfoInputs.cache create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/Proj.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/Proj.GlobalUsings.g.cs create mode 100644 obj/Debug/net8.0-ios/iossimulator-x64/Proj.nfloat.g.cs create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/Proj.AssemblyInfo.cs create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/Proj.AssemblyInfoInputs.cache create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/Proj.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/Proj.GlobalUsings.g.cs create mode 100644 obj/Debug/net8.0-maccatalyst/maccatalyst-x64/Proj.nfloat.g.cs create mode 100644 obj/Debug/net8.0-windows10.0.19041.0/win10-x64/.NETCoreApp,Version=v8.0.AssemblyAttributes.cs create mode 100644 obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Proj.AssemblyInfo.cs create mode 100644 obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Proj.AssemblyInfoInputs.cache create mode 100644 obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Proj.GeneratedMSBuildEditorConfig.editorconfig create mode 100644 obj/Debug/net8.0-windows10.0.19041.0/win10-x64/Proj.GlobalUsings.g.cs diff --git a/App.xaml b/App.xaml new file mode 100644 index 0000000..9c438b2 --- /dev/null +++ b/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/App.xaml.cs b/App.xaml.cs new file mode 100644 index 0000000..1034bda --- /dev/null +++ b/App.xaml.cs @@ -0,0 +1,12 @@ +namespace Proj +{ + public partial class App : Application + { + public App() + { + InitializeComponent(); + + MainPage = new AppShell(); + } + } +} diff --git a/AppShell.xaml b/AppShell.xaml new file mode 100644 index 0000000..93deeaa --- /dev/null +++ b/AppShell.xaml @@ -0,0 +1,15 @@ + + + + + + diff --git a/AppShell.xaml.cs b/AppShell.xaml.cs new file mode 100644 index 0000000..36ca1e3 --- /dev/null +++ b/AppShell.xaml.cs @@ -0,0 +1,10 @@ +namespace Proj +{ + public partial class AppShell : Shell + { + public AppShell() + { + InitializeComponent(); + } + } +} diff --git a/MainPage.xaml b/MainPage.xaml new file mode 100644 index 0000000..b8fa687 --- /dev/null +++ b/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +