-
-
Notifications
You must be signed in to change notification settings - Fork 1k
Virtual detector native gestures #3765
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
Merged
akwasniewski
merged 18 commits into
next
from
@akwasniewski/logic-detector-native-gestures
Nov 4, 2025
Merged
Changes from all commits
Commits
Show all changes
18 commits
Select commit
Hold shift + click to select a range
e68928d
correctly attaching native gestures
akwasniewski 5fdc74a
simplify
akwasniewski b8d999f
fixed reattaching
akwasniewski 359402e
fix ios detaching
akwasniewski 02f8732
Merge branch 'next' into @akwasniewski/logic-detector-native-gestures
akwasniewski 7d591f4
removed unused method
akwasniewski d1eaf3c
removed console log that sneaked in
akwasniewski 91ea2e7
utilised ternary
akwasniewski 3c2ddac
changed != to =
akwasniewski 9eb434f
only necessary changes
akwasniewski 8c42422
fix reattaching android
akwasniewski 66e7f23
preamptive fix on web
akwasniewski ed852b6
fixed naming
akwasniewski 3cf56a6
Merge branch 'next' into @akwasniewski/logic-detector-native-gestures
akwasniewski 6dffddb
Merge branch 'next' into @akwasniewski/logic-detector-native-gestures
akwasniewski c06d53e
detaching old tag
akwasniewski 6f2ab21
Merge branch 'next' into @akwasniewski/logic-detector-native-gestures
akwasniewski f355293
Merge branch 'next' into @akwasniewski/logic-detector-native-gestures
akwasniewski File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm curious, why did the order of attach/detach change?
Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
If you follow the logic in
updateLogicDetectorclosely you find out that if a specific handler was previously attached to another view, which was then detached (like in the example) - due to how handlers are stored - they would first be attached to the new view and then detached completely while looping throughlogicChildrenToDetach. I thought that it also happens inattachHandlers, but after careful testing it is not the case. I also fixed it on android today. For some reason I can't replicate it on web, I have to dig into that.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm not sure what is
updateLogicDetector.Uh oh!
There was an error while loading. Please reload this page.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I meant
updateLogicChildren, sorryThere was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I could not replicate the same issue on web due to how views are reused there, but I decided to add a similar fix to be safe.