Pages

Men

rh

12/28/2022

Asp.net Core Blazor - Blazor Hybrid

Asp.net Core Blazor - Blazor Hybrid
Blazor Hybrid
Blazor can also be used to build native client apps using a hybrid approach. Hybrid apps are native apps that leverage web technologies for their functionality. In a Blazor Hybrid app, Razor components run directly in the native app (not on WebAssembly) along with any other .NET code and render web UI based on HTML and CSS to an embedded Web View control through a local interop channel.
Blazor Hybrid apps can be built using different .NET native app frameworks, including .NET MAUI, WPF, and Windows Forms. Blazor provides BlazorWebView controls for adding Razor components to apps built with these frameworks. Using Blazor with .NET MAUI offers a convenient way to build cross-platform Blazor Hybrid apps for mobile and desktop, while Blazor integration with WPF and Windows Forms can be a great way to modernize existing apps.
The Blazor Hybrid hosting model offers several benefits:
  • Reuse existing components that can be shared across mobile, desktop, and web.
  • Leverage web development skills, experience, and resources.
  • Apps have full access to the native capabilities of the device.
  • The Blazor Hybrid hosting model has the following limitations:
  • Separate native client apps must be built, deployed, and maintained for each target platform.
  • Native client apps usually take longer to find, download, and install than accessing a web app in a browser.
  • All source of information collected from learn Microsoft page.

    No comments :

    Post a Comment