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??
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.
I tried using a image-crooper in flutter, but they only for local image. How to crop the image with url image?
I'd like to introduce my developing package crop_your_image. You can convert downloaded image data into UInt8List and pass it to Crop widget. Then, it would show up cropping UI on the screen.
You can find a sample app which downloads images via URL and let user crop them.
https://github.com/chooyan-eng/crop_your_image_gallery
I got my image by using Camera plugin in flutter. But that is saving somewhere, so i could not access the image outside. I want to save it to my gallery. Thanks in advance.
Using the flutter camera plugin ,am taking pictures for which I need to know the EXIF information. Any suggestions