Skip to content
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: issue with the picker not opening on ios with the new architecture #542

Open
wants to merge 1 commit into
base: master
Choose a base branch
from

Conversation

exlymex
Copy link

@exlymex exlymex commented Mar 15, 2024

On the new architecture the TextInput used to display the text was intercepting events. This seems to be caused by the view-flattening algorithm moving it out of the parent view which has pointerEvents="box-only" set.

The solution would be either to add pointerEvents="none" to the TextInput itself, as done in this PR, or to disable the view flattening for the parent view (by adding collapsable={false} prop to it), so the native view structure would match the react one.

@exlymex exlymex changed the title fix: fixed the problem with the picker not opening on ios with the new architecture fix: issue with the picker not opening on ios with the new architecture Mar 16, 2024
@lfkwtz
Copy link
Collaborator

lfkwtz commented Apr 23, 2024

does this have any regressions on the previous architecture?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants