bg_launcher 0.1.0
bg_launcher: ^0.1.0 copied to clipboard
A flutter plugin that brings an in-background android app to the foreground (Android only)
bg_launcher #
A flutter plugin that brings an in-background android app to the foreground (Android only)
Restrictions on starting activities from the background #
Apps running on Android 10 or higher can start activities only when one or more of the following conditions are met:
- To make the app works try to add
SYSTEM_ALERT_WINDOW
permission and grant it by the user for more info check here background-starts#exceptions
Getting Started #
check the example folder for a clearer example
/// `extras` & `action` are useful if you want to determine
/// what you will do when you bring the app from background
/// you can use `receive_intent` package and filter them with
/// the action & extras to show your own UI/ logic ...
BgLauncher.bringAppToForeground(
action: 'FBI-OPEN-UP',
extras: {
"title": "FBI OPEN UP",
"message": "The FBI is open up!",
"color": "#FF0000",
"priority": "high",
"visibility": "public",
"notificationId": "1",
},
);