Last active
March 1, 2019 09:18
-
-
Save michalchudziak/58069ad5abb153cda99223ee75fcd4ae to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| /* @flow */ | |
| import React from 'react'; | |
| import {NativeModules} from 'react-native'; | |
| export default function useClipboard() { | |
| const contents = NativeModules.Clipboard.getString(); | |
| const setClipboardContents = (content) => { | |
| NativeModules.Clipboard.setString(content) | |
| }; | |
| return [contents, setClipboardContents]; | |
| }; | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment