maui-gestures

Guide developers in implementing MAUI gesture recognizers across platforms.

Updated Nov 5, 2025
One-click install
npx skills add https://github.com/mkazimoto/AppMAUICopilot --skill maui-gestures
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: maui-gestures
Source: https://github.com/mkazimoto/AppMAUICopilot/tree/main/.github/skills/maui-gestures
Command: npx skills add https://github.com/mkazimoto/AppMAUICopilot --skill maui-gestures

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Guides developers to implement MAUI gesture recognizers for interactive apps.

Core Features & Use Cases

  • Comprehensive overview of Tap, Swipe, Pan, Pinch, Drag and Drop, and Pointer gestures in MAUI.
  • Clear usage patterns in XAML and C# with cross-platform considerations.
  • Real-world scenarios showing how to combine gestures and handle platform differences.

Quick Start

Integrate the TapGestureRecognizer to enable tap interactions on a control in your MAUI app.

Frequently Asked Questions about maui-gestures

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I implement gesture recognizers in .NET MAUI using XAML and C#?

Implement .NET MAUI gesture recognizers by adding them to controls in XAML or wiring them up in C#. This Skill guides you through usage patterns for tap, swipe, pan, pinch, drag-and-drop, and pointer gestures across platforms.

Can I combine multiple MAUI gesture recognizers on a single control?

Yes, you can combine MAUI gesture recognizers on a single control. This Skill provides real-world scenarios showing how to handle multiple gestures simultaneously and manage their interactions effectively.

What are the platform differences for MAUI drag and drop gestures?

MAUI drag and drop gestures have specific platform differences across iOS and Android. This Skill covers cross-platform considerations, detailing how to handle platform variations and ensure consistent interactive UI behavior.

How do I add a TapGestureRecognizer to a MAUI control for interactive UI?

Add a TapGestureRecognizer to your MAUI control to enable tap interactions. You can define it directly in XAML or configure it programmatically in C# to capture user taps on UI elements.

Does .NET MAUI support pinch and pan gestures for interactive UI design?

.NET MAUI supports pinch and pan gestures for interactive UI design. This Skill explains the implementation details and usage patterns for both, allowing you to build responsive touch-based interfaces.