Hi! I made a PWA which has a button to copy some text. It’s working perfectly in desktop, but nothing is happening on iOS browser. Any ideas for what could be happening?
Can you share some code? We’d love to help, but we cannot guess the issue without some code.
Sure!
const { Clipboard } = Plugins;
Clipboard.write({
string: 'some text'
});
As simple as that. I can not get to write it on clipboard on iOS chrome.
The plugin uses navigator.clipboard, which is only available on iOS 13.4 or newer
Most users don’t have that version.
Is there any way to correct this?