2
0

Improvements

This commit is contained in:
2026-01-17 05:42:44 +00:00
parent fc113166d6
commit 71f6aa1179
10 changed files with 269 additions and 133 deletions

View File

@@ -43,8 +43,11 @@ class Program
// Create the MAUI app with all handlers registered
var app = MauiProgram.CreateMauiApp();
// Run on Linux platform
LinuxApplication.Run(app, args);
// Run on Linux platform with GTK mode for WebView support
LinuxApplication.Run(app, args, options =>
{
options.UseGtk = true;
});
}
catch (Exception ex)
{