onResume method

  1. @mustCallSuper
void onResume()
inherited

onResume is called when the widget is fully displayed in the foreground. onResume will be called in the following cases:

  • after onInitState
  • after onApplicationResumed when the user returns to the app from the background
  • after returning and redisplaying after navigating from another screen using the push method.

Implementation

@mustCallSuper
void onResume() {}