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