Sunday, December 15, 2024
HomeiOS DevelopmentFlutter iOS clipboard doesn't copy all the information from Whatsapp or Telegram...

Flutter iOS clipboard doesn’t copy all the information from Whatsapp or Telegram chats


Context and Downside:
I’m making an attempt to let the person manually copy and paste chats from a chat app- say like Whatsapp to a Textfield in my flutter app. It really works effective in android, however, in ioS, just one (of a number of chosen and copied) chats are copied within the textfield. When I attempt to paste in in different native ioS apps or Notes app, it really works effective. I attempted printing the flutter Clipboard – in ioS, it solely prints one random chat of a number of chosen and copied chats. I think it’s a clipboard downside with Flutter – that breaks in iOS.

What I attempted doing:
Chosen a number of Whatsapp Chats in macOS / iOS – tried the identical in MacOS, ipad and iPhone. The under screeenshot is from macOS. However, the identical behaviour exists throughout iOS as properly.
Pasted the chat within the flutter textual content field and tried printing the clipboard.
enter image description here

enter image description here

void pasteFromClipboard() async {
  ClipboardData? clipboardData = await Clipboard.getData(Clipboard.kTextPlain);
  if (clipboardData != null) {
    String? completeText = clipboardData.textual content;
    print('Earlier Paste from clipboard knowledge: $completeText');
    completeText = (clipboardData.textual content ?? '').replaceAll(RegExp(r'[u202A-u202Eu00A0u200B]'), ' ').trim();
    print('Formatted Paste from clipboard knowledge: $completeText');
  }
}

Anticipated output
[29/08/24, 5:37:40 PM] +31 121548: Are you able to please let me know ho I can get the refund

[29/08/24, 6:49:02 PM] My Identify: I may help with the refund. Are you able to please let me know the explanation?

[29/08/24, 5:36:31 PM] +31 121548: Hello

Precise output:
Only one random line of the a number of chats copied.

“[29/08/24, 6:49:02 PM] My Identify: I may help with the refund. Are you able to please let me know the explanation?”

The identical conduct occurs for each bodily and digital gadgets.

RELATED ARTICLES

LEAVE A REPLY

Please enter your comment!
Please enter your name here

Most Popular

Recent Comments