-
Notifications
You must be signed in to change notification settings - Fork 646
fix scroll responder for rn v0.65 / keep backward capatability. #510
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
fix scroll responder for rn v0.65 / keep backward capatability. #510
Conversation
@slorber does this PR work for you? |
@slorber You might want to see this PR. It will use |
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.
Originally there was a check if responder was defined and not null and it is gone now.
I would wrap the lines 276-282 and 287-293 in
if (responder) { ... }
I tested in 0.66 and it works. So no worry for the latest stable version. 🥂 |
Co-authored-by: Mihai <lazari_mihai@mail.ru>
Co-authored-by: Mihai <lazari_mihai@mail.ru>
Any timeline in when this will be merged? Needed ASAP |
@slorber could we get some eyes on this? |
Hi guys, I don't wan't to push on this. But, as today November 1, android only supports api level 30. Regards |
You can bump |
So, when merge ? |
Released in 9.5, thanks for the retro compatible change @CoryWritesCode and sorry for the delay To everyone asking "please merge, I need this ASAP!!!", you are hurting the open-source community and actually delayed the merge of this PR:
|
Thanks @slorber for being responsive on this issue. I'm sorry many flooded this thread with noise. Really grateful for your work. ❤️ I think many people love this package and are going about expressing their love and the critical use for this package in an unfriendly way. If I may speak for them, we are super grateful that this package exists. I know it has helped in my team's dev time. |
As stated in #501 that fix isn't backwards compatible with previous versions of RN.
This should keep that compatibility viable while fixing the issue on the latest version of RN.
I created two apps working with different versions of RN to ensure the backwards compatibility.
You can view the code for them here
Fixes #508
Fixes #494