#import <FlutterAppLifecycleDelegate.h>
Instance Methods | |
(void) | - handleWillFinishLaunching: |
(void) | - handleDidFinishLaunching: |
(void) | - handleWillBecomeActive: |
(void) | - handleDidBecomeActive: |
(void) | - handleWillResignActive: |
(void) | - handleDidResignActive: |
(void) | - handleWillHide: |
(void) | - handleDidHide: |
(void) | - handleWillUnhide: |
(void) | - handleDidUnhide: |
(void) | - handleDidChangeScreenParameters: |
(void) | - handleDidChangeOcclusionState: |
(BOOL) | - handleOpenURLs: |
(void) | - handleWillTerminate: |
Protocol for listener of lifecycle events from the NSApplication, typically a FlutterPlugin.
Definition at line 21 of file FlutterAppLifecycleDelegate.h.
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidBecomeActive notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidUnhide notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidUnhide notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidFinishLaunching notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidHide notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillResignActive notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationDidUnhide notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the application:openURLs: callback.
Implementers should return YES if they handle the URLs, otherwise NO. Delegates will be called in order of registration, and once a delegate returns YES, no further delegates will reiceve this callback.
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillBecomeActive notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillFinishLaunching notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillHide notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillResignActive notification.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillTerminate notification.
Applications should not rely on always receiving all possible notifications.
For example, if the application is killed with a task manager, a kill signal, the user pulls the power from the device, or there is a rapid unscheduled disassembly of the device, no notification will be sent before the application is suddenly terminated, and this notification may be skipped.
Referenced by flutter::testing::TEST().
|
optional |
Called when the |FlutterAppDelegate| gets the applicationWillUnhide notification.
Referenced by flutter::testing::TEST().