clipboard

Creator: coderz1093

Last updated:

Add to Cart

Description:

clipboard

clipboard #

GitHub
Basic Usage: #
import 'package:clipboard/clipboard.dart';
copied to clipboard
Copy to clipboard from your app #
FlutterClipboard.copy('hello flutter friends').then(( value ) => print('copied'));
copied to clipboard
Paste from clipboard what's copied anywhere in the device #
FlutterClipboard.paste().then((value) {
// Do what ever you want with the value.
setState(() {
field.text = value;
pasteValue = value;
});
});
copied to clipboard
Why I made this plugin #
I have built quite a few apps that required being able to copy to clipboard until I wanted to build a URL shortener,
now I needed users to be able to paste from clipboard and I discover the plugin I was using could not perform that, I
search and found another plugin that could paste from clipboard but would only paste what was copied from within your app
. Now I wanted user to paste what was in the Phones Clipboard, I discovered a way and then built this to help developers.
kindly follow on github #
github
Kindly follow me on #
twitter
medium
instagram

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Customer Reviews

There are no reviews.