0

How can i access the pasteboard of iOS using Flutter? I can manipulate only text with Clipboard.setData(ClipboardData(text: 'mycontent'));, but i need send data to my clipboard. Some help?

outrowender
  • 351
  • 1
  • 5
  • 17

1 Answers1

2

You can use the Clipboard https://docs.flutter.io/flutter/services/Clipboard-class.html

exam:

import 'package:flutter/services.dart';
...

RaisedButton(
  child: Text('copy'),
  onPressed: () {
    Clipboard.setData(new ClipboardData(text: 'mycontent'));
  },
),
EdHuamani
  • 1,857
  • 13
  • 17