Skip to content

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

@fredfalcon

Description

@fredfalcon

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

Metadata

Metadata

Assignees

Type

No type

Projects

Status

Backlog

Milestone

No milestone

Relationships

None yet

Development

No branches or pull requests

Issue actions