flutter_fgbg_module 0.0.1+3 flutter_fgbg_module: ^0.0.1+3 copied to clipboard
JuneFlow 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
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.
});