qiuxiang / flutter-android-window

A flutter plugin allows you to create native android floating window.
MIT License
62 stars 19 forks source link

Copy and Paste not working in TextFormField & TextField #13

Open nickolaylo opened 2 years ago

nickolaylo commented 2 years ago

Hi, I'm trying Copy & Paste text in TextField in my android floating window. I tried many ways but still, it's not working, also I tried to copy text to the clipboard or get if from clipboard using : import 'package:flutter/services.dart'; Clipboard.setData(ClipboardData(text: "Text here to copy")); ClipboardData cdata = await Clipboard.getData(Clipboard.kTextPlain); String copiedtext = cdata.text; print(copiedtext);

This is a simple code example reproducing the issue: Github

Could you please help me make this functionality works in my floating window?

qiuxiang commented 2 years ago

This may be a limitation of android service. I don't know how to solve it.