From 35796576ff848afe29870d6fbbf1ba6460c5ac17 Mon Sep 17 00:00:00 2001 From: chrisbell Date: Tue, 25 Nov 2025 23:26:56 -0600 Subject: [PATCH] Init --- WguApp/.gitignore | 3 + WguApp/.noai | 0 WguApp/App.xaml | 14 + WguApp/App.xaml.cs | 14 + WguApp/AppShell.xaml | 14 + WguApp/AppShell.xaml.cs | 9 + WguApp/GlobalXmlns.cs | 2 + WguApp/MainPage.xaml | 36 ++ WguApp/MainPage.xaml.cs | 23 + WguApp/MauiProgram.cs | 24 + WguApp/Platforms/Android/AndroidManifest.xml | 6 + WguApp/Platforms/Android/MainActivity.cs | 12 + WguApp/Platforms/Android/MainApplication.cs | 15 + .../Android/Resources/values/colors.xml | 6 + WguApp/Platforms/MacCatalyst/AppDelegate.cs | 9 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + WguApp/Platforms/MacCatalyst/Info.plist | 38 ++ WguApp/Platforms/MacCatalyst/Program.cs | 15 + WguApp/Platforms/Tizen/Main.cs | 16 + WguApp/Platforms/Tizen/tizen-manifest.xml | 15 + WguApp/Platforms/Windows/App.xaml | 8 + WguApp/Platforms/Windows/App.xaml.cs | 23 + WguApp/Platforms/Windows/Package.appxmanifest | 46 ++ WguApp/Platforms/Windows/app.manifest | 15 + WguApp/Platforms/iOS/AppDelegate.cs | 9 + WguApp/Platforms/iOS/Info.plist | 32 ++ WguApp/Platforms/iOS/Program.cs | 15 + .../iOS/Resources/PrivacyInfo.xcprivacy | 51 ++ WguApp/Properties/launchSettings.json | 8 + WguApp/Resources/AppIcon/appicon.svg | 4 + WguApp/Resources/AppIcon/appiconfg.svg | 8 + WguApp/Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107316 bytes WguApp/Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111204 bytes WguApp/Resources/Images/dotnet_bot.png | Bin 0 -> 93437 bytes WguApp/Resources/Raw/AboutAssets.txt | 15 + WguApp/Resources/Splash/splash.svg | 8 + WguApp/Resources/Styles/Colors.xaml | 45 ++ WguApp/Resources/Styles/Styles.xaml | 440 ++++++++++++++++++ WguApp/WguApp.csproj | 67 +++ WguApp/WguApp.sln | 16 + 40 files changed, 1095 insertions(+) create mode 100644 WguApp/.gitignore create mode 100644 WguApp/.noai create mode 100644 WguApp/App.xaml create mode 100644 WguApp/App.xaml.cs create mode 100644 WguApp/AppShell.xaml create mode 100644 WguApp/AppShell.xaml.cs create mode 100644 WguApp/GlobalXmlns.cs create mode 100644 WguApp/MainPage.xaml create mode 100644 WguApp/MainPage.xaml.cs create mode 100644 WguApp/MauiProgram.cs create mode 100644 WguApp/Platforms/Android/AndroidManifest.xml create mode 100644 WguApp/Platforms/Android/MainActivity.cs create mode 100644 WguApp/Platforms/Android/MainApplication.cs create mode 100644 WguApp/Platforms/Android/Resources/values/colors.xml create mode 100644 WguApp/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 WguApp/Platforms/MacCatalyst/Entitlements.plist create mode 100644 WguApp/Platforms/MacCatalyst/Info.plist create mode 100644 WguApp/Platforms/MacCatalyst/Program.cs create mode 100644 WguApp/Platforms/Tizen/Main.cs create mode 100644 WguApp/Platforms/Tizen/tizen-manifest.xml create mode 100644 WguApp/Platforms/Windows/App.xaml create mode 100644 WguApp/Platforms/Windows/App.xaml.cs create mode 100644 WguApp/Platforms/Windows/Package.appxmanifest create mode 100644 WguApp/Platforms/Windows/app.manifest create mode 100644 WguApp/Platforms/iOS/AppDelegate.cs create mode 100644 WguApp/Platforms/iOS/Info.plist create mode 100644 WguApp/Platforms/iOS/Program.cs create mode 100644 WguApp/Platforms/iOS/Resources/PrivacyInfo.xcprivacy create mode 100644 WguApp/Properties/launchSettings.json create mode 100644 WguApp/Resources/AppIcon/appicon.svg create mode 100644 WguApp/Resources/AppIcon/appiconfg.svg create mode 100644 WguApp/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 WguApp/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 WguApp/Resources/Images/dotnet_bot.png create mode 100644 WguApp/Resources/Raw/AboutAssets.txt create mode 100644 WguApp/Resources/Splash/splash.svg create mode 100644 WguApp/Resources/Styles/Colors.xaml create mode 100644 WguApp/Resources/Styles/Styles.xaml create mode 100644 WguApp/WguApp.csproj create mode 100644 WguApp/WguApp.sln diff --git a/WguApp/.gitignore b/WguApp/.gitignore new file mode 100644 index 0000000..1349347 --- /dev/null +++ b/WguApp/.gitignore @@ -0,0 +1,3 @@ +bin/ +obj/ +.idea/ \ No newline at end of file diff --git a/WguApp/.noai b/WguApp/.noai new file mode 100644 index 0000000..e69de29 diff --git a/WguApp/App.xaml b/WguApp/App.xaml new file mode 100644 index 0000000..c9c032c --- /dev/null +++ b/WguApp/App.xaml @@ -0,0 +1,14 @@ + + + + + + + + + + + diff --git a/WguApp/App.xaml.cs b/WguApp/App.xaml.cs new file mode 100644 index 0000000..19970ac --- /dev/null +++ b/WguApp/App.xaml.cs @@ -0,0 +1,14 @@ +namespace WguApp; + +public partial class App : Application +{ + public App() + { + InitializeComponent(); + } + + protected override Window CreateWindow(IActivationState? activationState) + { + return new Window(new AppShell()); + } +} \ No newline at end of file diff --git a/WguApp/AppShell.xaml b/WguApp/AppShell.xaml new file mode 100644 index 0000000..64baa83 --- /dev/null +++ b/WguApp/AppShell.xaml @@ -0,0 +1,14 @@ + + + + + + diff --git a/WguApp/AppShell.xaml.cs b/WguApp/AppShell.xaml.cs new file mode 100644 index 0000000..63aba5d --- /dev/null +++ b/WguApp/AppShell.xaml.cs @@ -0,0 +1,9 @@ +namespace WguApp; + +public partial class AppShell : Shell +{ + public AppShell() + { + InitializeComponent(); + } +} \ No newline at end of file diff --git a/WguApp/GlobalXmlns.cs b/WguApp/GlobalXmlns.cs new file mode 100644 index 0000000..6e8ad19 --- /dev/null +++ b/WguApp/GlobalXmlns.cs @@ -0,0 +1,2 @@ +[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp")] +[assembly: XmlnsDefinition("http://schemas.microsoft.com/dotnet/maui/global", "WguApp.Pages")] \ No newline at end of file diff --git a/WguApp/MainPage.xaml b/WguApp/MainPage.xaml new file mode 100644 index 0000000..17f1c76 --- /dev/null +++ b/WguApp/MainPage.xaml @@ -0,0 +1,36 @@ + + + + + + + +