flutter_uploader
flutter_uploader copied to clipboard
background upload plugin for flutter
just make `backgroundHandler` top-level method on top of main.dart. ```dart void backgroundHandler() { print('background handler'); } ``` and register handler with `setBackgroundHandler` ```dart FlutterUploader().setBackgroundHandler(backgroundHandler); ``` when I start upload, upload...
Fetching external sources -> Fetching podspec for `Flutter` from `Flutter` -> Fetching podspec for `flutter_uploader` from `.symlinks/plugins/flutter_uploader/ios`
I was trying to upload a video, image and file at the same time. I used tag for each one. During the progress/result, the tag field is not returned. ```...
Bumps [protobufjs](https://github.com/protobufjs/protobuf.js) from 6.10.2 to 6.11.3. Release notes Sourced from protobufjs's releases. v6.11.3 6.11.3 (2022-05-20) Bug Fixes deps: use eslint 8.x (#1728) (a8681ce) do not let setProperty change the prototype...
I'm trying to execute some piece of code when the uploader finishes its uploading but it seems it is duplicates due to multi notifications from the plugin that the task...
It seems setBackgroundHandler cannot be accessed from FlutterUploader() I did copy the example code and still got this error. The method 'setBackgroundHandler' isn't defined for the type 'FlutterUploader'. Try correcting...
**The case:** I want to make my app uploading 500-1000 images in the background even when the device is locked. Everything works fine when the app is in the foreground....
Hello, I am using flutter_uploader: ^3.0.0-beta.4. Flutter 2.10.4 • channel stable • https://github.com/flutter/flutter.git Framework • revision c860cba910 (4 weeks ago) • 2022-03-25 00:23:12 -0500 Engine • revision 57d3bac3dd Tools •...
I need my application to encrypt a text file and save it to local storage after downloading it using the flutter uploader . so how can I use my dart...
I have fully implemented your package into my app and now I have an error 'Data cannot occupy more than 10240 bytes when serialized' also mentioned in https://github.com/fluttercommunity/flutter_uploader/issues/58 when I...