-
Notifications
You must be signed in to change notification settings - Fork 279
Touchable* inside Row element #31
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
Comments
Tested your solution and it seems to break the draggability of the row item, so this actually isn't a solution. I'll try to take a look since I'm interested too. |
Looks like |
yes, please |
published, a new version with fix |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Hi,
When I have Touchable* element inside "row", the touchable element not receiving the touch event, and its "onPress" event do not raise.
I think reason is in this line in Row.js:
onMoveShouldSetPanResponder: () => !this._isDisabled(),
if I'm replacing it with the following line, all works:
onMoveShouldSetPanResponder: () => false,
But I'm new to RN and I'm not sure if its the correct way to "fix" this issue, and what can be the implications.
There is better way to solve this issue?
Thanks,
Tal
The text was updated successfully, but these errors were encountered: