ChatBotCustomWebViewPlugin 1.0.3

dotnet add package ChatBotCustomWebViewPlugin --version 1.0.3
NuGet\Install-Package ChatBotCustomWebViewPlugin -Version 1.0.3
This command is intended to be used within the Package Manager Console in Visual Studio, as it uses the NuGet module's version of Install-Package.
<PackageReference Include="ChatBotCustomWebViewPlugin" Version="1.0.3" />
For projects that support PackageReference, copy this XML node into the project file to reference the package.
paket add ChatBotCustomWebViewPlugin --version 1.0.3
#r "nuget: ChatBotCustomWebViewPlugin, 1.0.3"
#r directive can be used in F# Interactive and Polyglot Notebooks. Copy this into the interactive tool or source code of the script to reference the package.
// Install ChatBotCustomWebViewPlugin as a Cake Addin
#addin nuget:?package=ChatBotCustomWebViewPlugin&version=1.0.3

// Install ChatBotCustomWebViewPlugin as a Cake Tool
#tool nuget:?package=ChatBotCustomWebViewPlugin&version=1.0.3
  1. Install SDK/Plugin

  2. Need to add .UseCustomWebViewPluginLibrary() in Mauiprogram.cs

Ex:- public static class MauiProgram { public static MauiApp CreateMauiApp() { var builder = MauiApp.CreateBuilder(); builder .UseMauiApp<App>() .UseMauiCommunityToolkit() .UseCustomWebViewPluginLibrary() .ConfigureFonts(fonts ⇒ { fonts.AddFont("OpenSans-Regular.ttf", "OpenSansRegular"); fonts.AddFont("OpenSans-Semibold.ttf", "OpenSansSemibold"); }).UseUserDialogs();

#if DEBUG builder.Logging.AddDebug(); #endif Routing.RegisterRoute("home", typeof(HomeView)); return builder.Build(); } }

  1. To use SDK web view in xaml page

Import xmlns:customWebView="clr-namespace:ChatBotCustomWebViewPlugin.Views;assembly=ChatBotCustomWebViewPlugin"

Use- <StackLayout> <customWebView:ChatBotCustomView x:Name="webView" HorizontalOptions="FillAndExpand" VerticalOptions="FillAndExpand"/> </StackLayout>

Product Compatible and additional computed target framework versions.
.NET net8.0-android34.0 is compatible.  net8.0-ios17.2 is compatible. 
Compatible target framework(s)
Included target framework(s) (in package)
Learn more about Target Frameworks and .NET Standard.

NuGet packages

This package is not used by any NuGet packages.

GitHub repositories

This package is not used by any popular GitHub repositories.

Version Downloads Last updated
1.0.3 70 6/13/2024
1.0.1 67 6/11/2024
1.0.0 63 6/11/2024

MAUI Chatbot WebView SDK