From 52432b4a9e5b941a980e65122f94b0f9d4e70eb5 Mon Sep 17 00:00:00 2001 From: Ho Ngoc Hai Date: Thu, 15 Jan 2026 23:51:03 +0700 Subject: [PATCH] =?UTF-8?q?feat:=20Kh=E1=BB=9Fi=20t=E1=BA=A1o=20=E1=BB=A9n?= =?UTF-8?q?g=20d=E1=BB=A5ng=20MAUI=20th=E1=BB=AD=20nghi=E1=BB=87m=20cho=20?= =?UTF-8?q?macOS=20Catalyst.?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- apps/app-client-base/MainPage.xaml | 6 +- .../Resources/Styles/Colors.xaml | 93 ++-- apps/maui-test/App.xaml | 14 + apps/maui-test/App.xaml.cs | 16 + apps/maui-test/AppShell.xaml | 14 + apps/maui-test/AppShell.xaml.cs | 9 + apps/maui-test/MainPage.xaml | 36 ++ apps/maui-test/MainPage.xaml.cs | 23 + apps/maui-test/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 + .../Platforms/MacCatalyst/Entitlements.plist | 14 + .../Platforms/MacCatalyst/Info.plist | 40 ++ .../Platforms/MacCatalyst/Program.cs | 15 + apps/maui-test/Platforms/Windows/App.xaml | 8 + apps/maui-test/Platforms/Windows/App.xaml.cs | 24 + .../Platforms/Windows/Package.appxmanifest | 46 ++ apps/maui-test/Platforms/Windows/app.manifest | 17 + apps/maui-test/Platforms/iOS/AppDelegate.cs | 9 + apps/maui-test/Platforms/iOS/Info.plist | 32 ++ apps/maui-test/Platforms/iOS/Program.cs | 15 + .../iOS/Resources/PrivacyInfo.xcprivacy | 51 ++ apps/maui-test/Properties/launchSettings.json | 8 + apps/maui-test/Resources/AppIcon/appicon.svg | 4 + .../maui-test/Resources/AppIcon/appiconfg.svg | 8 + .../Resources/Fonts/OpenSans-Regular.ttf | Bin 0 -> 107280 bytes .../Resources/Fonts/OpenSans-Semibold.ttf | Bin 0 -> 111208 bytes .../maui-test/Resources/Images/dotnet_bot.png | Bin 0 -> 92532 bytes apps/maui-test/Resources/Raw/AboutAssets.txt | 15 + apps/maui-test/Resources/Splash/splash.svg | 8 + apps/maui-test/Resources/Styles/Colors.xaml | 44 ++ apps/maui-test/Resources/Styles/Styles.xaml | 434 ++++++++++++++++++ apps/maui-test/TestMauiApp.csproj | 64 +++ deployments/local/docker-compose.yml | 65 ++- services/chat-service-net/Dockerfile | 4 +- 38 files changed, 1134 insertions(+), 72 deletions(-) create mode 100644 apps/maui-test/App.xaml create mode 100644 apps/maui-test/App.xaml.cs create mode 100644 apps/maui-test/AppShell.xaml create mode 100644 apps/maui-test/AppShell.xaml.cs create mode 100644 apps/maui-test/MainPage.xaml create mode 100644 apps/maui-test/MainPage.xaml.cs create mode 100644 apps/maui-test/MauiProgram.cs create mode 100644 apps/maui-test/Platforms/Android/AndroidManifest.xml create mode 100644 apps/maui-test/Platforms/Android/MainActivity.cs create mode 100644 apps/maui-test/Platforms/Android/MainApplication.cs create mode 100644 apps/maui-test/Platforms/Android/Resources/values/colors.xml create mode 100644 apps/maui-test/Platforms/MacCatalyst/AppDelegate.cs create mode 100644 apps/maui-test/Platforms/MacCatalyst/Entitlements.plist create mode 100644 apps/maui-test/Platforms/MacCatalyst/Info.plist create mode 100644 apps/maui-test/Platforms/MacCatalyst/Program.cs create mode 100644 apps/maui-test/Platforms/Windows/App.xaml create mode 100644 apps/maui-test/Platforms/Windows/App.xaml.cs create mode 100644 apps/maui-test/Platforms/Windows/Package.appxmanifest create mode 100644 apps/maui-test/Platforms/Windows/app.manifest create mode 100644 apps/maui-test/Platforms/iOS/AppDelegate.cs create mode 100644 apps/maui-test/Platforms/iOS/Info.plist create mode 100644 apps/maui-test/Platforms/iOS/Program.cs create mode 100644 apps/maui-test/Platforms/iOS/Resources/PrivacyInfo.xcprivacy create mode 100644 apps/maui-test/Properties/launchSettings.json create mode 100644 apps/maui-test/Resources/AppIcon/appicon.svg create mode 100644 apps/maui-test/Resources/AppIcon/appiconfg.svg create mode 100644 apps/maui-test/Resources/Fonts/OpenSans-Regular.ttf create mode 100644 apps/maui-test/Resources/Fonts/OpenSans-Semibold.ttf create mode 100644 apps/maui-test/Resources/Images/dotnet_bot.png create mode 100644 apps/maui-test/Resources/Raw/AboutAssets.txt create mode 100644 apps/maui-test/Resources/Splash/splash.svg create mode 100644 apps/maui-test/Resources/Styles/Colors.xaml create mode 100644 apps/maui-test/Resources/Styles/Styles.xaml create mode 100644 apps/maui-test/TestMauiApp.csproj diff --git a/apps/app-client-base/MainPage.xaml b/apps/app-client-base/MainPage.xaml index 4ecb2106..8f7d8cc2 100644 --- a/apps/app-client-base/MainPage.xaml +++ b/apps/app-client-base/MainPage.xaml @@ -16,12 +16,14 @@