pub package

flutter_fgbg_module

This is a module that notifies you when the app goes into the background or comes to the foreground

Installation

  1. If the juneflow project doesn't exist, please create it by following this guide.
  2. 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.
});