We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Describe the bug
Alt text is not selectable, because <Pressable> goes to <button> on web, which is not selectable by default
<Pressable>
<button>
To Reproduce
Steps to reproduce the behavior:
Expected behavior
Text is selectable (may want to copy it for example)
Screenshots
Details
Additional context
You can fix it by adding user-select: text to the <Pressable>
user-select: text
The text was updated successfully, but these errors were encountered:
Solution is similar to #969 which I'm currently assigned to. @gaeoron let me know if you want to do it otherwise I can just wrap it up
Sorry, something went wrong.
also want to add, that we cant select alt text on android
I removed the [web] from the title since it's useful to be able to select on other platforms too.
gaearon
No branches or pull requests
Describe the bug
Alt text is not selectable, because
<Pressable>
goes to<button>
on web, which is not selectable by defaultTo Reproduce
Steps to reproduce the behavior:
Expected behavior
Text is selectable (may want to copy it for example)
Screenshots
(I added `user-select: text` in dev tools in order to select the word "text")Details
Additional context
You can fix it by adding
user-select: text
to the<Pressable>
The text was updated successfully, but these errors were encountered: