Remote Application
Wisej.NET Hybrid applications can be configured to run online, connected to an external remote web server.
Last updated
Wisej.NET Hybrid applications can be configured to run online, connected to an external remote web server.
Last updated
public static MauiApp Main()
{
var builder = MauiApp.CreateBuilder();
builder
.UseMauiApp<App>()
.UseWisejHybrid((config) =>
{
// Provide the startup URL for the Hybrid WebView.
config.StartupUrl = "https://demo.wisej.com/Hybrid";
});
return builder.Build();
}