Skip to content

tunitowen/flutter_clipboard

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

27 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

clipboard

pub package

GitHub

Basic Usage:

import 'package:clipboard/clipboard.dart';

Copy to clipboard from your app

  FlutterClipboard.copy('hello flutter friends').then(( value ) => print('copied'));

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;
    });
  });

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

About

A plugin that helps you copy to clipboard and paste from clipboard.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Dart 74.2%
  • HTML 14.4%
  • Objective-C 9.6%
  • Java 1.8%