flutter_workmanager icon indicating copy to clipboard operation
flutter_workmanager copied to clipboard

A Flutter plugin which allows you to execute code in the background on Android and iOS.

Results 143 flutter_workmanager issues
Sort by recently updated
recently updated
newest added

Hi there, I now that there are lots of other issues where this question is discussed. I just want to ask to ask what is the best way to create...

documentation
enhancement
help wanted
iOS

I want to pass data while creating background task , for android there is option of inputData but I can't find any option for iOS. Can anyone help me with...

documentation

We should eventually support other platforms and in the process migrate this repo to Federated Plugin design. See here for more about federated design: https://flutter.dev/docs/development/packages-and-plugins/developing-packages#plugin See here for an example...

enhancement
help wanted

add support to windows (flutter desktop)

bug
enhancement
help wanted

First , thanks for this awesome package. this work fine with me to prevent android os from killing my app when running in background. but my only problem is when...

bug
android

I have added the Network policy in the work manager. When a worker is running, I am updating the UI to a loading state in the callback dispatcher. But when...

enhancement
android

@ened I have been reviewing the work completed in #243 and working with the latest version of this package that includes those changes. I have some comments and questions that...

# Flutter Code In Flutter, we have the following example ```dart void taskDispatcher() { Workmanager().executeTask((String taskName, Map data) async { // Do something return true; }); } Future main() async...

- [x] I have read the [README](https://github.com/vrtdev/flutter_workmanager/blob/master/README.md) - [x] I have done the setup for [Android](https://github.com/vrtdev/flutter_workmanager/blob/master/ANDROID_SETUP.md) - [x] I have done the setup for [iOS](https://github.com/vrtdev/flutter_workmanager/blob/master/IOS_SETUP.md) - [x] I have ran...

enhancement

I would like to add a feature request to support long-running workers using WorkManager foreground service, the same way Android WorkManager 2.3.0-alpha02+ is doing now e.g. running as a foreground...

enhancement
android