This solution is not too good It can only copy all, not the part. Does flutter have a ready-made solution? This requirement should be used very frequently. Is there a specific widget implementation?
Asked
Active
Viewed 634 times
2
-
1You can copy any text you want `Clipboard.setData(new ClipboardData(text: text));` copies the text you pass. You can use TextEditingController to get the selected text https://flutter.io/docs/cookbook/forms/text-field-changes#2-use-a-texteditingcontroller – Günter Zöchbauer Nov 20 '18 at 08:29