Last updated:
0 purchases
flutter fgbg module
flutter_fgbg_module #
This is a module that notifies you when the app goes into the background or comes to the foreground
Installation #
If the juneflow project doesn't exist, please create it by following this guide.
open terminal in the juneflow project root directory, enter the following command.
june add flutter_fgbg_module
copied to clipboard
Usage #
You can always listen to the app's state changes through the following code.
EasyEventBus.on('App is in foreground', (event) {
// write your code here when the app is in the foreground.
});
EasyEventBus.on('App is in background', (event) {
// write your code here when the app is in the background.
});
copied to clipboard
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.