-
Notifications
You must be signed in to change notification settings - Fork 12
Lifecycle
Kevin Pearson edited this page May 3, 2023
·
1 revision
Version Lifecycle 0.0.0-unknown.0
undefined
The application lifecycle state
enum LifecycleState {
INITIALIZING = 'initializing',
INACTIVE = 'inactive',
FOREGROUND = 'foreground',
BACKGROUND = 'background',
UNLOADING = 'unloading',
SUSPENDED = 'suspended'
}
The application close reason
enum CloseReason {
REMOTE_BUTTON = 'remoteButton',
USER_EXIT = 'userExit',
DONE = 'done',
ERROR = 'error'
}