Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/Core/src/Platform/iOS/PlatformTouchGraphicsView.cs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ public PlatformTouchGraphicsView()
_proxy = new(this);
Opaque = false;
BackgroundColor = null;
Copy link

Copilot AI Jun 10, 2025

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This change correctly enables multi-touch support on iOS as per Apple's documentation. Consider adding an inline comment referencing the documentation URL to improve code maintainability and clarity.

Suggested change
BackgroundColor = null;
BackgroundColor = null;
// Enable multi-touch support as per Apple's documentation:
// https://developer.apple.com/documentation/uikit/uiview/1622459-multipletouchenabled

Copilot uses AI. Check for mistakes.
MultipleTouchEnabled = true;
}

public override void LayoutSubviews()
Expand Down
Loading