Can't paste from clipboard on mobile
With a long press on the form, to call the menu with an insert, the select loses focus, this can also be seen on the demo on the site
Any workaround to make the paste work on mobile?
Sorry, I couldn't find it, but if you manage to get around this, please write
@MeatyBanan4ik @flaviogranero In react-select, actual input field is only 2px wide. Make it 100% in order for click event to work on mobile.
@MeatyBanan4ik @flaviogranero In react-select, actual input field is only 2px wide. Make it 100% in order for click event to work on mobile.
I was try it and not work, the "issue still" when touch mobile on input but the "paste" or copy options (from s.o) don't appareers.
the input has a 100vh for width
styles={{
input: (base) => ({
...base,
display: "inline-flex",
}),
}}
worked for me. no apparent side-effects with our usage. didn't dig deeper.