-
-
Notifications
You must be signed in to change notification settings - Fork 2.2k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Remove option to GestureRecognizerCollection #12558
Comments
@timunie I would be happy to contribute so I can complete the support of Avalonia in F# Fabulous |
I've been talking to the team. In general we would accept a method Good luck 👍 |
@timunie I was wondering if there are any issues with the gestures currently. Looking at https://github.com/AvaloniaUI/Avalonia/blob/master/samples/ControlCatalog/Pages/GesturePage.cs I could not trigger any gesture. Thanks in advance :) |
Some gestures require touch input. |
Is your feature request related to a problem? Please describe.
While working on
Fabulous.Avalonia
gesture recognizers, I found thatGestureRecognizerCollection
usesIReadOnlyCollection<GestureRecognizer>
and only exposesAdd
.Describe the solution you'd like
GestureRecognizerCollection
to inherit from.AvaloniaList< GestureRecognizer>
IReadOnlyCollection<GestureRecognizer>
and expose aRemove
method that will modify the privateList<GestureRecognizer>? _recognizers
Describe alternatives you've considered
Additional context
Fabulous.Avalonia
GestureRecognizers PR
The text was updated successfully, but these errors were encountered: