android - How to allow copy and paste from an ionic webview? -
i using ionic , cordova build hybrid application.
however, can't copy text of webviews. android phone or browser, copying text not work. selecting text , dragging pointer nothing.
this occurs instance basic app generated ionic start myapp tabs
.
simply put, how can allow users copy-paste?
make ion-content
overflow-scroll="true"
, add class copyable text
.selectable{ -webkit-user-select: auto; }
you cannot copy clipboard javascript programmatically. can done native side via plugin cordovaclipboard
Comments
Post a Comment