How to copy an image to clipboard in flutter

910

I did not try and not sure if the answer is you looking for but you can give a try that first you can convert your image to Uint8List format with BASE64 decode and encode then copy it. for conversion you can check this. link

how-to-convert-base64-string-into-image-with-flutter

also check answers of this threat

how-to-send-image-through-post-using-json-in-flutter

Share:
910
ouzari
Author by

ouzari

Updated on December 21, 2022

Comments

  • ouzari
    ouzari over 1 year

    I searched in google for how to copy an image to clipboard in flutter but I did not find any useful information. I only found in flutter documentation this:

    "ClipboardData class:

    Data stored on the system clipboard.

    The system clipboard can contain data of various media types. This data structure currently supports only plain text data, in the text property."

    https://api.flutter.dev/flutter/services/ClipboardData-class.html

    Is it impossible to copy an image to clipboard in flutter right now?