hello I would like to know if there is a camera plugin for flutter web in order to take a photo and store it in a temporary path to then upload it to firestorage
If I understood correctly and i hope you already tried these packages image_picker & image_picker_web
Check these resources, it seems pretty same to your scenario;
https://github.com/flutter/photobooth
https://medium.com/flutter/how-its-made-i-o-photo-booth-3b8355d35883
Reply back if this is helpful to sort out the problem or share with us how did you solved it.
Related
I have encountered a problem that the app needs to save pdf files downloaded from the internet in the downloads folder in both ios and android, but after searching for solutions on the internet I have not found anything that would help in this implementation. I would appreciate if someone could share their experience in implementing such functionality.
It would be better if you can add more details to your questions. It is preferred that you should attach some code or screenshots of your code so that you can get better help.
every app in android or ios has its own folder in the device storage, android apps will be in the android directory.
you can use the path_provider plugin to get the directory of your app, all the information you need will be in this link
Is there any packages which will help to generate link for my flutter app that i am building.Like most of the app that we come across they give this option of sending downloading link to others , like GooglePay. Similarly I just want to generate link and nothings else.
You need to implement deep linking for your application please refer to docs: https://docs.flutter.dev/development/ui/navigation/deep-linking
I am developing a photo vault using Flutter. I need to list all the images in the mobile storage, and when the user picks one or more images. I need to move that image(s) into App Private. So that no other app can see it. So for moving the file, I need the location/path of the picked image(s). which no plugin on earth is providing.
Below is the list of plugins I tried. Each one of them provides the path of the image copied to the app private directory. No the original one
file_picker 2.1.6
image_picker 0.6.7+22
multi_image_picker 4.7.15
It would be a big help if you could suggestion some solution for it.
Thank You
I am new to flutter development and I have some images in my flutter web app, and I want to put the images in some CDN network and fetch it from there. Is this possible in flutter?
I checked google but I could not find anything concrete. Need some guidance. Thanks!
Pseudo Code-
new NetworkImage(CDN LINK)
See the cookbook here. But if these images are only used in your flutter application, wouldn't it make more sense just to bundle them along with any other assets and use an AssetImage?
Looking to see if anyone knows of a File Picker plugin similar to the image_picker, but for files, so that they can be uploaded from a mobile device.
Looking for a plugin or any example if anyone has done it already.
Thanks for any help.
I started hacking this together. I got it basically working for android. Here is the repository.
It actually copies the selected file to the app's temp directory and then provides the path, since there's no way I can see to get the file data from the OS to flutter.