clippy icon indicating copy to clipboard operation
clippy copied to clipboard

Access system clipboard in Dart (Server&Browser)

Results 5 clippy issues
Sort by recently updated
recently updated
newest added

Dart 3.0.0 has implemented null safety as a requirement. Flutter 3.10.0, the new stable release, uses Dart 3. [Pub.dev shows](https://pub.dev/packages/clippy) that this package is incompatible with Dart 3, meaning that...

Might not be the best upgrade, but it compiles and works on the web for my use case

I'm running Windows 10 and I have a very simple program that fails to copy text into my clipboard. Here's my MWE: ```dart import 'package:clippy/server.dart' as clippy; void main() async...

``` import 'package:clippy/browser.dart' as clippy; await clippy.write('https://github.com/andresaraujo/clippy'); ``` And the example project doesn't work either, please help 😀

Clippy doesn't seem to play nice with unicode characters. If I run: await clippy.write('►'); And then paste, I get: ‚ñ∫ I expect to get: ► I've only tried running this...