Jitsi Meet - Secure, Simple and Scalable Video Conferences that you use as a standalone app or embed in your web application.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 
jitsi-meet/react/features/base/util/copyText.native.ts

18 lines
409 B

import Clipboard from '@react-native-community/clipboard';
/**
* Tries to copy a given text to the clipboard.
* Returns true if the action succeeds.
*
* @param {string} textToCopy - Text to be copied.
* @returns {Promise<boolean>}
*/
export function copyText(textToCopy: string) {
try {
Clipboard.setString(textToCopy);
return true;
} catch (e) {
return false;
}
}