Flutter: How to pick image and mark the image as "picked" with a check mark in the gallery? - flutter

I am building a social app using flutter. I am using image_picker package to pick image and videos from gallery but I also want to mark all the images in the gallery which are already picked with a "check mark", so that user knows while picking more images which ones are already picked by him. Can someone suggest how to implement this?
This should be a feature of the image_picker package btw.

Related

Cartoonise image in Flutter

it is possible so please send the code
Cartoonise image in Flutter
Allow users to upload an image from camera or photo gallery. Convert this image into a cartoon version of the same image. Show cartoon version to the user.
if it is possible so please resolve the my issue or give me refernce

How can I access All Files inside device of specific type (e.g image, audios, videos) etc in flutter

I want to make my own media picker, where I will open screen and show all images of device in case of image picker, show all audios on the device in case of audio picker and all videos for video picker. The method must work on both android and IOS. I am using flutter Dart to do this. I am new in flutter and any help will be highly appricated.
I have tried Flutter File manager and unable to do this.
There is a package available named File Picker have look into it. Its very well documented.

How to save photo taken by flutter camera app to gallery? NB: I want to use camera app created by flutter

I am a beginner to Flutter, and I managed to create a flutter camera app with lot of reference from many sites. But now I am struggling to save the image to phone gallery. I don't want to use image picker for that purpose and I tried gallery saver package as well. Nothing is working. Please help me with the issue??

Flutter Images Tags

Does flutter have any package or plugin which lets us tap on the image and tag people or anything?
Basically, I want to take a pick of a few products and then tap on any particular image and then write the name of that product.
Help me out, guys
You can use flutter camera or image picker package to pick image of your product.
Camera
Image Picker
And then use stack to add text on the image.

Flutter: Preview one or more images from the phone gallery?

I am using the camera plugin in flutter with a custom camera preview interface but I would want to include into the interface a list at the bottom of the screen a list of photos currently inside my photo gallery....Is there a plugin for flutter that I can use to preview photos from my photo gallery?
check image_picker plugin for Flutter
https://pub.dartlang.org/packages/image_picker#-readme-tab-
I believe I found a plugin that you were asking for. The plugin is called photo_manager.
From the photo_manager Readme:
A flutter api for photo, you can get image/video from ios or android.
If you just need a picture selector, you can choose to use photo library , a multi image picker.
I hope this helps and happy coding!