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.

Libraries

pasteboard