Walkme.Sdk.Maui.iOS 1.0.0

dotnet add package Walkme.Sdk.Maui.iOS --version 1.0.0
                    
NuGet\Install-Package Walkme.Sdk.Maui.iOS -Version 1.0.0
                    
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="Walkme.Sdk.Maui.iOS" Version="1.0.0" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="Walkme.Sdk.Maui.iOS" Version="1.0.0" />
                    
Directory.Packages.props
<PackageReference Include="Walkme.Sdk.Maui.iOS" />
                    
Project file
For projects that support Central Package Management (CPM), copy this XML node into the solution Directory.Packages.props file to version the package.
paket add Walkme.Sdk.Maui.iOS --version 1.0.0
                    
#r "nuget: Walkme.Sdk.Maui.iOS, 1.0.0"
                    
#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.
#:package Walkme.Sdk.Maui.iOS@1.0.0
                    
#:package directive can be used in C# file-based apps starting in .NET 10 preview 4. Copy this into a .cs file before any lines of code to reference the package.
#addin nuget:?package=Walkme.Sdk.Maui.iOS&version=1.0.0
                    
Install as a Cake Addin
#tool nuget:?package=Walkme.Sdk.Maui.iOS&version=1.0.0
                    
Install as a Cake Tool

WalkMe

WalkMe SDK for .NET MAUI (iOS)

Walkme.Sdk.Maui.iOS binds the WalkMe iOS SDK (player, without the Editor / Power Mode) for .NET MAUI apps. The package is self-contained — the required Lottie framework is bundled, so no extra setup is needed.

The public API is kept aligned with the Android package (Walkme.Sdk.Maui.Android): the same IWalkMe surface, CrossWalkMe.Default accessor, UseWalkMe() DI extension, WalkMeStartOptions, and C# events — so consumer code is the same across platforms.

For the WalkMe Editor (Power Mode) binding, use Walkme.Sdk.Editor.Maui.iOS instead. An app references one or the other, not both.

Requirements

  • iOS 14.0 or later
  • .NET 8 or later — the package targets net8.0-ios and is consumable by .NET 8, 9, and 10 iOS apps

Installation

dotnet add package Walkme.Sdk.Maui.iOS

Usage

using WalkMe.Maui;

var options = new WalkMeStartOptions
{
    SystemGuid = "<YOUR_SYSTEM_GUID>",
    Environment = "Production",
    DataCenter = WalkMeDataCenter.Prod,
};

CrossWalkMe.Default.AnalyticsEventSent += (_, e) =>
    Console.WriteLine($"WalkMe event: {e.EventName}");

CrossWalkMe.Default.Start(options);

Or via DI: builder.UseWalkMe() in MauiProgram.cs, then inject IWalkMe.

Platform differences from Android (by design)

  • No Start(Activity, options) overload — iOS has no host Activity; use Start(options).
  • No ItemAction event — the native iOS SDK does not expose an item-action callback. ItemPresented, ItemDismissed, and AnalyticsEventSent are available.
  • DataCenter is fully supported. It maps to the native @objc bridge WalkMeStartOptions.dataCenterValue.

Support

License

Commercial software. Use is subject to your agreement with WalkMe.

Product Compatible and additional computed target framework versions.
.NET net8.0-ios18.0 is compatible.  net9.0-ios was computed.  net10.0-ios was computed. 
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.0 25 7/30/2026