Skip to main content
Filter by
Sorted by
Tagged with
0 votes
1 answer
84 views

I’m building a Flutter iOS app that allows users to select images using the image_picker package. However, when I tap the “Gallery” button to open the native Photos picker, the UI becomes completely ...
YD K's user avatar
  • 1
0 votes
1 answer
109 views

I have a main_screen with action button to open a camera. The code is below doing this Future<void> _openCamera() async { final picker = ImagePicker(); try { final XFile? photo = ...
Senthil's user avatar
  • 391
1 vote
1 answer
38 views

The image_picker, has the following three methods to reference when wanting to make device XFile selections: pickImage() pickVideo() pickMultiImage() pickMultiMedia() <- this is the one i want ...
Spencer's user avatar
  • 135
0 votes
1 answer
119 views

I'm using the image_picker package in my Flutter app to take photos and pick files. However, I'm facing two issues: Camera Issue: When taking a photo with the camera, the photo is taken, and I confirm ...
Jefrin Johnson's user avatar
0 votes
1 answer
464 views

I'm using the image_picker package to select photo in my Flutter iOS app. It worked correctly, but it looks like the Screenshot. It can't be selected nor dismissed. This is my code: final ...
Liangwei Chen's user avatar
-1 votes
2 answers
59 views

I want to deselect images if I selected more than 4 images, here i can't go back gallery List<XFile?> imageFiles = await ImagePicker.platform.pickMultiImage(); if(imageFiles.length <= 4) { ...
Nandhini Ravichandran's user avatar
1 vote
0 answers
68 views

I have 2 Widget functions which while initiating onPressed() is supposed to show a imagepicker() using a CupertinoActionsheet with Actions to choose an image from Gallery/Camera. The ...
Earthling's user avatar
  • 489
1 vote
2 answers
395 views

I am using Flutter image_picker library in this way to click images from camera. I want the camera screen to be overlapped by a png image which contains custom wire-frame for capture guidance. ...
Faizan Ahmed's user avatar
0 votes
0 answers
254 views

I am trying to make a simple social media app and I am using a alert dialog for the user to add a new post. Im trying to update the alert dialog using statefulBuilder when I add an image but the image ...
The Synergist's user avatar
0 votes
1 answer
154 views

I know there are lot of questions mentioning the same issue. But none is helpful for me. I have a valuelistable builder which listens to a boolean value . I have a image picker to pick image from ...
Sindu's user avatar
  • 247
0 votes
0 answers
233 views

When using ImagePicker().pickImage(source: ImageSource.camera) the app crashes. Tried the example provided on pub.dev for image_picker. On an Android device, it works. On iOS 16 or below, it works. ...
Carlos Henrique's user avatar
1 vote
0 answers
384 views

I'm working on a Flutter project with version 1.22.6, and due to dependency constraints, upgrading to a later Flutter version is not an option. The project relies on image_picker version ^0.6.7+22 for ...
Betselot Semaw's user avatar
0 votes
1 answer
437 views

My Flutter app is experiencing crashes on Android 13 and above when attempting to select an image using the image_picker plugin. The application functions correctly on Android 12 and below. The error ...
Moloy Adhikary's user avatar
2 votes
1 answer
113 views

I am using the Flutter image_picker library to implement a feature where users can pick an image and upload them to a backend server. Once they click on choosing an image, a dialog box should ask them ...
Celaro's user avatar
  • 226
0 votes
1 answer
205 views

I am getting following null value error when I try to click on Inkwell. I don't know where I am getting the error and I am not able to fix this issue. I tried many things but nothing works. Error: ====...
Mr Fin's user avatar
  • 97
-1 votes
1 answer
1k views

When I open camera using image_picker in low memory devices, my app restarts after coming back. How to prevent it from restarting? Issue is same in release mode too. The device I am using is Redmi 7A ...
s4nk37's user avatar
  • 323
2 votes
0 answers
774 views

I currently try to get images from the Gallery to my App and save them, if not already there, in a sub folder in the Gallery. On Android everything works fine, when checking against the file name, ...
iDontGetIt's user avatar
1 vote
1 answer
696 views

As i implemented my own way to put image in hive but it did not work. I searched on internet but not found any sound solution. A complete code to implement it can be helpful. Any help will be ...
Muhammad fahad azam's user avatar
0 votes
1 answer
1k views

I'm having a problem whenever I load an image on the Android Emulator/Physical Device, in iOS works fine. These are the two main methods I'm using, they are in the class Photo Repository void ...
Cristian David Rosero Suárez's user avatar
1 vote
2 answers
707 views

I try to code some gallery picker function from Youtube but I want to ask for permission for storage to user ,when I code below code, I get into the app info why I get there and how to fix it import '...
Eain Hmun Khin's user avatar
0 votes
1 answer
746 views

I have set up image picker and it works perfectly in localhost but not at all once deployed to web. I've looked at the web implementation and I think I have done it as it says there but it still doesn'...
Ola Michalska's user avatar
1 vote
1 answer
136 views

I'm currently working on a program where the user would be able to select an image to analyze the text in the image and keep getting the following error while trying to get display the selected image ...
Jana's user avatar
  • 11
0 votes
1 answer
104 views

I am new to Flutter and need some assistance. I am using the ImagePicker to allow the user to select the image they want to use for a specific event (on the "Add New Event Page"), however, ...
Jeff Barra's user avatar
0 votes
2 answers
1k views

I am trying to install Flutter package "image_picker". When I run flutter pub add image_picker I get the following error: The current Dart SDK version is 3.0.1. Because image_picker <0.7....
user1543784's user avatar
1 vote
0 answers
189 views

I'm using Flutter imge_picker package, and it works well. But I'm unable to customize the bottom menu bar and text colors: Screenshot here Is there a way to customize that bottom black background, &...
Anatolii's user avatar