Execute Dart code in the background, even when your app is closed (Android and iOS). On macOS, background tasks run while the app is running or backgrounded and the Mac is awake. Perfect for data sync, file uploads, and periodic maintenance tasks.
⚠️ Experimental web support now exists viaworkmanager_web(Service Worker + Web Worker based background execution). See the Web (experimental) page and the package README for honest limitations and how to test it in Chrome.
Get started with background tasks in Flutter:
→ Quick Start Guide - Installation and setup
→ API Documentation - Complete Dart API reference
→ Debugging Guide - Troubleshooting help
→ Troubleshooting Guide - Why tasks stop after app close (OEM battery optimization, constraints, verification)
Background tasks are perfect for:
- Sync data from API - Keep your app's data fresh
- Upload files in background - Reliable file uploads
- Clean up old data - Remove old files and cache
- Fetch notifications - Check for new messages
- Database maintenance - Optimize and clean databases
For work that takes longer than the regular background execution window (bulk
uploads/downloads, ML processing), Android tasks can run as a foreground
service with a persistent notification. Pass a foregroundServiceConfig to
registerOneOffTask or registerPeriodicTask:
await Workmanager().registerOneOffTask(
"upload-task",
"upload_files",
foregroundServiceConfig: ForegroundServiceConfig(
notificationTitle: "Uploading files",
notificationText: "Your files are being uploaded",
),
);See the Quick Start guide for details and platform caveats.
cancelByUniqueName, cancelByTag and cancelAll stop the WorkManager worker
immediately, but the Dart callback that is currently running keeps executing
unless it reacts to the stop. Pass an onTaskStopped handler to executeTask
inside your callbackDispatcher to be notified when a running task is stopped
before it finishes:
@pragma('vm:entry-point')
void callbackDispatcher() {
Workmanager().executeTask(
(taskName, inputData) async {
return true;
},
onTaskStopped: (taskName, stopReason) async {
// Mark the task as cancelled / persist state, then return promptly.
},
);
}The handler receives the task name and the WorkManager stop reason
(cancelledByApp, timeout, preempt, ...); on Android < 12 the reason is
StopReason.unknown. Android-only — iOS has no way to stop a running task.
See the Customization guide
for details.
- Bug reports: GitHub Issues →
- Questions: GitHub Discussions →
- Documentation: docs.page/fluttercommunity/flutter_workmanager →
See the example folder for a complete working demo with all task types and platform configurations.