BLT-Flutter icon indicating copy to clipboard operation
BLT-Flutter copied to clipboard

2️⃣6️⃣ allow the user to be able to past an image into the bug report page in the app

Open fredfalcon opened this issue 2 years ago • 5 comments

Need custom function for copying image from clipboard as Pasteboard package does not supports android platform

to get this functionality switch to the flutter master channel (command flutter channel master), this will now include PR 110052 which adds this functionality.

to use it simply add this to your TextField:

//... contentInsertionConfiguration: ContentInsertionConfiguration( onContentInserted : (_){/your cb here/} allowedMimeTypes: ["image/png",/.../], }), //... this will then use the android specific content commit api to (as you guessed) tell the OS that your TextField accepts the given mimetypes; gboard will recognize this and suggest the content with fitting mimetypes in your clipboard

fredfalcon avatar Mar 05 '23 19:03 fredfalcon