clipboard_manager 0.0.1 copy "clipboard_manager: ^0.0.1" to clipboard
clipboard_manager: ^0.0.1 copied to clipboard

outdated

A flutter plugin to copy text to clipboard.

clipboard_manager #

simple flutter plugin to copy text to clipboard in both android and ios.

Install #

  • Add clipboard_manager to your dependencies list in pubspec.yaml file
dependencies:
  flutter:
    sdk: flutter

  # The following adds the Cupertino Icons font to your application.
  # Use with the CupertinoIcons class for iOS style icons.
  cupertino_icons: ^0.1.2
  clipboard_manager: ^0.0.1
  • Run flutter packages get from your root project

  • import the package by import 'package:clipboard_manager/clipboard_manager.dart';

Usage #

ClipboardManager.copyToClipBoard("your text to copy").then((result) {
                        final snackBar = SnackBar(
                          content: Text('Copied to Clipboard'),
                          action: SnackBarAction(
                            label: 'Undo',
                            onPressed: () {},
                          ),
                        );
                        Scaffold.of(context).showSnackBar(snackBar);
                      });

Example #

the plugin comes with an simplest example app. run it to see it in working.

38
likes
0
pub points
78%
popularity

Publisher

unverified uploader

A flutter plugin to copy text to clipboard.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on clipboard_manager