pasteboard 0.1.1 copy "pasteboard: ^0.1.1" to clipboard
pasteboard: ^0.1.1 copied to clipboard

A flutter plugin which could read image,files from clipboard and write files to clipboard.

pasteboard #

Pub

A flutter plugin which could read image,files from clipboard and write files to clipboard.

Windows
Linux
macOS
iOS
Web

Getting Started #

  1. add package:pasteboard to pubspec.yaml
    dependencies:
      pasteboard: ^latest
    
  2. example.
import 'package:pasteboard/pasteboard.dart';

Future<void> readAndWriteFiles() async {
  final paths = ['your_file_path'];
  await Pasteboard.writeFiles(paths);

  final files = await Pasteboard.files();
  print(files);
}

Future<void> readImages() async {
  final imageBytes = await Pasteboard.image;
  print(imageBytes?.length);
}

License #

See the LICENSE file for the full license.

78
likes
120
pub points
96%
popularity

Publisher

verified publishermixin.dev

A flutter plugin which could read image,files from clipboard and write files to clipboard.

Homepage
Repository (GitHub)
View/report issues

Documentation

API reference

License

Apache-2.0 (LICENSE)

Dependencies

flutter, flutter_web_plugins, js

More

Packages that depend on pasteboard