navigator.clipboard.writeText doesn't work due to the mobile webview not defining navigator.permission, causing a NotAllowError: Write permission denied. error. using the capacitor/clipboard library fixes this by correctly handling permission on mobile.
navigator.clipboard.writeText
doesn't work due to the mobile webview not definingnavigator.permission
, causing aNotAllowError: Write permission denied.
error. using the capacitor/clipboard library fixes this by correctly handling permission on mobile.