jspuij / TwokaB

Blazor WebView control for WPF, Android, macOS, iOS. Run Blazor on .NET Core and Mono natively inside a Webview.

Home Page:https://jspuij.github.io/BlazorWebView.Docs/pages/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Buy Me A Coffee

TwokaB

The Webview Originally Known as BlazorWebView.

Update: I'll be working with Eilon Lipton from MS to get TwokaB merged into the new BlazorWebView that will be part of the Mobile Blazor Bindings. Preview4 has been released with most of the functionality of this BlazorWebView: https://devblogs.microsoft.com/aspnet/hybrid-blazor-mobile-blazor-bindings-july-update/ We are working to get Static Assets with RCL support in MobileBlazorBindings next. Stay tuned for updates.

Blazor traditionally runs on .NET Core for Server-side Blazor and runs the Mono runtime on WebAssembly inside the browser for Client-side Blazor. For desktop and mobile applications, this is cumbersome, as it requires a bundled web server and retains the disadvantages of SSB or CSB respectively.

Steve Sanderson from Microsoft first escaped the server- / client-side jail and released a .NET Core sample that leverages native WebViews on Windows / Linux / macOS to show a window on these respective operating systems. Steve made a blog post describing his efforts; an excellent introduction to what this is.

Building on these foundations, I have created a BlazorWebView "Control" that is easily embedded in (Native) UI frameworks on the following platforms:

  • Xamarin Android (running on the Mono runtime)
  • Xamarin iOS (running on the Mono runtime)
  • Xamarin Mac (running on the Mono runtime)
  • WPF (running on the .NET Core runtime)

I'm considering adding these platforms in the future:

  • GTK Linux (running on the Mono runtime or .NET Core)
  • GTK Mac (running on .NET Core)
  • Windows Forms (running on the .NET Core runtime)
  • Apple TV (running on the Mono runtime)
  • Apple Watch (running on the Mono runtime)

The advantage of using Xamarin on mobile platforms is that you can use the Xamarin Essentials library to interact with mobile platform APIs easily from .NET.

Edgium Status

Because of the Coronavirus, the latest Edge SDK does not work with the Stable or Beta (81) builds of edge, as the code necessary to support the SDK never made it into 81. 82 is cancelled. The first version that supports the SDK is Edge 83, but unfortunately Microsoft created a bug that will hang the initialization of the browser and also makes fallback fail. Bug is tracked here (MicrosoftEdge/WebView2Feedback#151). So the only Edgium (new edge) build that works, is the Canary channel version, which can be downloaded at:

https://www.microsoftedgeinsider.com/nl-nl/download/

Get Started.

The instructions to get started vary depending on which platform you want to create the application for. It's best to follow the tutorials for every platform. They are available below:

Some guidance on how to set up a Blazor project to best accommodate targeting multiple platforms is available as well.

Install the NuGet Packages.

In general, you need to add one of the NuGet packages specific to your platform to your project:

PM> Install-Package BlazorWebView.Android

# OR
PM> Install-Package BlazorWebView.iOS

# OR
PM> Install-Package BlazorWebView.Mac

# OR
PM> Install-Package BlazorWebView.Wpf

Add BlazorWebView to Your Activity/View, ViewController/View, or Window.

Next add the BlazorWebView (it's named like this in every package) to your Activity / View (for Android), ViewController / View (for iOS and Mac), or your window XAML. Make sure that the BlazorWebView gets an identifier so we can reference it in a code-behind file.

Wire up Your Blazor Project to the BlazorWebView.

First, we need to adapt the URL to the Blazor JavaScript. It will be loaded from the NuGet assembly by referencing a dedicated scheme. The URL to the Blazor JavaScript is:

framework://blazor.desktop.js

The rest of the URLs are relative URLs. A complete example index.html file provided below:

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8" />
    <meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
    <title>MyDesktopApp</title>
    <base href="/" />
    <link href="css/bootstrap/bootstrap.min.css" rel="stylesheet" />
    <link href="css/site.css" rel="stylesheet" />
</head>
<body>
    <app>Loading...</app>

    <script src="framework://blazor.desktop.js"></script>
</body>
</html>

Finally, we initialize the BlazorWebView from code-behind using the BlazorWebViewHost static class like this:

BlazorWebViewHost.Run<Startup>(this.blazorWebView, "wwwroot/index.html");

That's it! That wasn't too difficult, was it?

About

Blazor WebView control for WPF, Android, macOS, iOS. Run Blazor on .NET Core and Mono natively inside a Webview.

https://jspuij.github.io/BlazorWebView.Docs/pages/index.html

License:Apache License 2.0


Languages

Language:C# 49.2%Language:TypeScript 42.1%Language:HTML 3.9%Language:C++ 3.2%Language:JavaScript 1.1%Language:CMake 0.3%Language:Batchfile 0.2%