(iOS and Android Only)
Adds a listener to get notifications when the clipboard has changed.
If this is the first listener, turns on clipboard notifications on the native side.
It returns EmitterSubscription where you can call "remove" to remove listener
(iOS 14+ Only)
Returns whether the clipboard has a Number(UIPasteboardDetectionPatternNumber) content. Can check
if there is a Number content in clipboard without triggering PasteBoard notification for iOS 14+
This method returns a Promise, so you can use following code to check for Number content in clipboard.
(iOS Only)
Returns whether the clipboard has a URL content. Can check
if there is a URL content in clipboard without triggering PasteBoard notification for iOS 14+
This method returns a Promise, so you can use following code to check for url content in clipboard.
(iOS 14+ Only)
Returns whether the clipboard has a WebURL(UIPasteboardDetectionPatternProbableWebURL) content. Can check
if there is a WebURL content in clipboard without triggering PasteBoard notification for iOS 14+
This method returns a Promise, so you can use following code to check for WebURL content in clipboard.
(iOS and Android Only) Adds a listener to get notifications when the clipboard has changed. If this is the first listener, turns on clipboard notifications on the native side. It returns EmitterSubscription where you can call "remove" to remove listener