imagepicker Questions
7
Solved
I am using image_picker 0.6.7+17 library in order to take an image using the phone camera.
I am using an android device and not an ios device.
A problem
It seems like that getImage method is not de...
Catgut asked 21/12, 2020 at 21:38
5
Solved
I am using image_picker: ^0.8.4+4 where I am getting this error. what I can do to make this code right?
late File selectedImage;
bool _isLoading = false;
CrudMethods crudMethods = CrudMethods();
F...
Globe asked 9/11, 2021 at 10:0
10
Solved
I am using a riverpod provider class to handle picking of image from gallery. However, once an image is picked, I get the error: PlatformException(multiple_request, Cancelled by a second request nu...
Woodshed asked 21/2, 2022 at 0:0
6
Solved
I am picking an image from gallery/taking a photo using the image_picker: ^0.6.2+3 package.
File picture = await ImagePicker.pickImage(
maxWidth: 800,
imageQuality: 10,
source: source, // source...
Groceryman asked 24/1, 2020 at 12:23
9
Solved
I have the following code which launches the image picker to select image from gallery.
File _image;
final picker = ImagePicker();
Future getImage() async {
final pickedFile = await picker.getI...
Ascidian asked 27/7, 2020 at 11:24
2
Solved
I have this code. I can pick an image on my gallery but it's not displaying. Need help on that, thanks !
import 'dart:io';
import 'package:file_picker/file_picker.dart';
import 'package:firebase_au...
Docent asked 12/11, 2022 at 19:19
3
I want to allow the user to crop the Image he chose from the image picker and save it(Similar to uploading profile pic on Whatsapp). How can I do this in flutter?
Sample Image:
Exodontics asked 15/5, 2018 at 5:43
4
Solved
I'm currently using these versions:
flutter : 2.16.0
image_picker : ^0.8.4+7
The image picker is not working. After running the app, when I click on the button to activate the pickImage function, r...
Genie asked 10/2, 2022 at 0:33
2
I added "image_picker: ^0.8.4+11" package to my project.
After adding it was returning this error.
What went wrong:
A problem occurred configuring project ':flutter_plugin_android_lifecyc...
Appurtenant asked 13/3, 2022 at 8:49
2
I'm thinking about using the image picker package for my app. The thing is that I only want the user to be allowed to select images that are of type JPEG, JPG, or PNG. Is there a way to go about do...
Simulcast asked 24/2, 2022 at 21:32
5
Solved
guys! I am facing this camera version. It happened after I merged my projects. It says there is no camera available but back then it was running fine. Please have a look!
E/flutter: [ERROR:flutter/...
Armbruster asked 18/9, 2020 at 9:48
2
The Following Code is used to Upload any image from gallery/Camera to Firebase storage. I was successful in uploading the image to storage along with meta data. Now the problem is I am not able to ...
Caldeira asked 22/5, 2021 at 17:19
3
Solved
How can I pick images directly as jpg or png on iOS?
If this feature isn't available: How can I convert it very fast and don't have to wait a long time?
Edit: I want to prevent picking .heic beca...
Aeneous asked 4/6, 2020 at 8:54
1
I am developing a mobile app in flutter that requires the user to select an image from the gallery.
I am using image_picker: ^0.6.7+11 and here is my code:
if (await Permission.photos.request().isG...
Greatgranduncle asked 5/10, 2020 at 11:45
4
Solved
I want to get an image path from selected multiple images, I'm using this link to select multiple images but I got assets, I want paths from selected multiple images because I want to upload into t...
Afterpiece asked 15/3, 2020 at 9:35
1
In my Flutter pr project, I am using Image Picker plugin to select images from the android mobile gallery or capture images with the camera and show them one after another with a delete icon below ...
Angleworm asked 6/3, 2020 at 14:4
2
I run flutter's plugin image_picker's sample.
When I pick image one by one from gallery, the memory keep increase. Ideally the memory should jump back since it at most select one image in this exa...
Ventricose asked 12/9, 2019 at 2:47
1
© 2022 - 2025 — McMap. All rights reserved.