File tree Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Expand file tree Collapse file tree 1 file changed +9
-8
lines changed Original file line number Diff line number Diff line change @@ -40,14 +40,15 @@ See [`Dispatchers.Main` documentation](https://kotlinlang.org/api/kotlinx.corout
40
40
41
41
### iOS
42
42
43
- | Native events and  ; notifications | Lifecycle event | Lifecycle state change |
44
- | --------------------------------------| -----------------| ------------------------|
45
- | ` viewDidDisappear ` | ` ON_STOP ` | ` STARTED ` → ` CREATED ` |
46
- | ` viewWillAppear ` | ` ON_START ` | ` CREATED ` → ` STARTED ` |
47
- | ` willResignActive ` | ` ON_PAUSE ` | ` RESUMED ` → ` STARTED ` |
48
- | ` didBecomeActive ` | ` ON_RESUME ` | ` STARTED ` → ` RESUMED ` |
49
- | ` didEnterBackground ` | ` ON_STOP ` | ` STARTED ` → ` CREATED ` |
50
- | ` willEnterForeground ` | ` ON_START ` | ` CREATED ` → ` STARTED ` |
43
+ | Native events and  ; notifications | Lifecycle event | Lifecycle state change |
44
+ | -----------------------------------------| -----------------| -------------------------|
45
+ | ` viewDidDisappear ` | ` ON_STOP ` | ` STARTED ` → ` CREATED ` |
46
+ | ` viewWillAppear ` | ` ON_START ` | ` CREATED ` → ` STARTED ` |
47
+ | ` willResignActive ` | ` ON_PAUSE ` | ` RESUMED ` → ` STARTED ` |
48
+ | ` didBecomeActive ` | ` ON_RESUME ` | ` STARTED ` → ` RESUMED ` |
49
+ | ` didEnterBackground ` | ` ON_STOP ` | ` STARTED ` → ` CREATED ` |
50
+ | ` willEnterForeground ` | ` ON_START ` | ` CREATED ` → ` STARTED ` |
51
+ | ` viewControllerDidLeaveWindowHierarchy ` | ` ON_DESTROY ` | ` CREATED ` → ` DESTROYED ` |
51
52
52
53
### Web
53
54
You can’t perform that action at this time.
0 commit comments