TouchTracking.MAUI 3.0.20

There is a newer prerelease version of this package available.
See the version list below for details.
dotnet add package TouchTracking.MAUI --version 3.0.20
                    
NuGet\Install-Package TouchTracking.MAUI -Version 3.0.20
                    
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="TouchTracking.MAUI" Version="3.0.20" />
                    
For projects that support PackageReference, copy this XML node into the project file to reference the package.
<PackageVersion Include="TouchTracking.MAUI" Version="3.0.20" />
                    
Directory.Packages.props
<PackageReference Include="TouchTracking.MAUI" />
                    
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 TouchTracking.MAUI --version 3.0.20
                    
#r "nuget: TouchTracking.MAUI, 3.0.20"
                    
#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.
#addin nuget:?package=TouchTracking.MAUI&version=3.0.20
                    
Install TouchTracking.MAUI as a Cake Addin
#tool nuget:?package=TouchTracking.MAUI&version=3.0.20
                    
Install TouchTracking.MAUI as a Cake Tool

SkiaScene

Collection of lightweight libraries which can be used to simplify manipulation of SkiaSharp graphic objects.

Supported platforms are Android, iOS and MAUI android and iOS

Libraries

SkiaScene

Install-Package SkiaScene

Basic class which allows controlling SKCanvasView transformations without the need to directly manipulate underlying Matrix. First you need to implement Render method of ISKSceneRenderer interface, where you define all your drawing logic on SKCanvasView. Then create the SKScene instance:

//Create scene
ISKSceneRenderer myRenderer = new MyRenderer(); //user defined instance 
scene = new SKScene(myRenderer);

//In your paint method
scene.Render(canvas); //Pass canvas from SKPaintSurfaceEventArgs

//Scene manipulation
scene.MoveByVector(new SKPoint(10, 0)); //Move by 10 units to the right independently from current rotation and zoom
scene.ZoomByScaleFactor(scene.GetCenter(), 1.2f); //Zoom to the center
scene.RotateByRadiansDelta(scene.GetCenter(), 0.1f); //Rotate around center
canvasView.InvalidateSurface(); //Force to repaint

TouchTracking

Install-Package TouchTracking

TouchTracking provides unified API for multi-touch gestures on Android, iOS. It can be used without MAUI UI framework too. Basic principles are described in MAUI Documentation https://learn.microsoft.com/en-us/dotnet/maui/migration/effects?view=net-maui-9.0

Usage is similar on each platform.

Android example:

//Initialization
canvasView = FindViewById<SKCanvasView>(Resource.Id.canvasView); //Get SKCanvasView
touchHandler = new TouchHandler() { UseTouchSlop = true };
touchHandler.RegisterEvents(canvasView); //Pass View to the touch handler
touchHandler.TouchAction += OnTouch; //Listen to the touch gestures

void OnTouch(object sender, TouchActionEventArgs args) {
    var point = args.Location; //Point location
    var type = args.Type; //Entered, Pressed, Moved ... etc.
    //... do something
}

TouchTracking.MAUI

Install-Package TouchTracking.MAUI

Same functionality as TouchTracking library but can be consumed in MAUI as an Effect called TouchEffect.

xmlns:maui="clr-namespace:TouchTracking.MAUI;assembly=TouchTracking.MAUI"

<Grid
    BackgroundColor="White">
    <controls:SKCanvasView
        x:Name="CanvasView"
        PaintSurface="OnPaint"
        EnableTouchEvents="true">
    </controls:SKCanvasView>
    <Grid.Effects>
        <maui:TouchEffect
            Capture="True"
            TouchAction="OnTouchEffectAction" />
    </Grid.Effects>
</Grid>

Make sure to register the Effect in your MauiProgram.cs file adding:

.ConfigureEffects(effects =>
{
    effects.InitTouchTrackingEffects();
})

SkiaScene.TouchManipulations

Install-Package SkiaScene.TouchManipulations

Combines SkiaScene and TouchTracking libraries to detect and respond to the tap, pinch and pan gestures. Most of the functionality is described in Xamarin Documentation https://developer.xamarin.com/guides/xamarin-forms/advanced/skiasharp/transforms/touch/

TouchGestureRecognizer recieves touch event info in 'ProcessTouchEvent' method and fires concrete gesture event.

SceneGestureResponder subscribes to the events of TouchGestureRecognizer and executes correct actions in underlying SKScene.

SceneGestureRenderingResponder inherits from SceneGestureResponder and additionally controls frequency of calling InvalidateSurface method through MaxFramesPerSecond property.

Product Compatible and additional computed target framework versions.
.NET net9.0-android35.0 is compatible.  net9.0-ios18.0 is compatible.  net9.0-maccatalyst18.0 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
3.1.3-alpha 104 3/26/2025
3.1.2-alpha 434 3/26/2025
3.0.20 110 3/26/2025
3.0.19-alpha 437 3/26/2025
3.0.18-alpha 436 3/26/2025