From 6bce5e3959fb11bc6ff9b5d6f5ad618411680bc8 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 3 May 2023 10:43:00 -0400 Subject: [PATCH 1/3] Update lifecycle.md --- docs/vue/lifecycle.md | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/docs/vue/lifecycle.md b/docs/vue/lifecycle.md index a36def3597a..b9f16fc9cad 100644 --- a/docs/vue/lifecycle.md +++ b/docs/vue/lifecycle.md @@ -9,13 +9,12 @@ This guide discusses how to use the Ionic Framework Lifecycle events in an Ionic ## Ionic Framework Lifecycle Methods Ionic Framework provides a few lifecycle methods that you can use in your apps: - | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render. From 97e2370b9881865a5076cddea3e8ab97145cb524 Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 3 May 2023 10:43:36 -0400 Subject: [PATCH 2/3] Update lifecycle.md --- docs/angular/lifecycle.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/angular/lifecycle.md b/docs/angular/lifecycle.md index 5bf7d113370..ddb7b902fbb 100644 --- a/docs/angular/lifecycle.md +++ b/docs/angular/lifecycle.md @@ -37,9 +37,9 @@ In addition to the Angular life cycle events, Ionic Angular provides a few addit | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render. From fd0f145e0f34cd693c96a96738276d283d42957e Mon Sep 17 00:00:00 2001 From: Liam DeBeasi Date: Wed, 3 May 2023 10:43:47 -0400 Subject: [PATCH 3/3] Update lifecycle.md --- docs/react/lifecycle.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/react/lifecycle.md b/docs/react/lifecycle.md index f43992d2163..9d348b95013 100644 --- a/docs/react/lifecycle.md +++ b/docs/react/lifecycle.md @@ -20,9 +20,9 @@ Ionic provides a few lifecycle methods that you can use in your apps: | Event Name | Description | | ------------------ | ------------------------------------------------------------------ | | `ionViewWillEnter` | Fired when the component routing to is about to animate into view. | -| `ionViewDidEnter` | Fired when the component routing to has finished animating. | -| `ionViewWillLeave` | Fired when the component routing from is about to animate. | -| `ionViewDidLeave` | Fired when the component routing to has finished animating. | +| `ionViewDidEnter` | Fired when the component routing to has *finished* animating. | +| `ionViewWillLeave` | Fired when the component routing *from* is about to animate. | +| `ionViewDidLeave` | Fired when the component routing *from* has *finished* animating. | These lifecycles are only called on components directly mapped by a router. This means if `/pageOne` maps to `PageOneComponent`, then Ionic lifecycles will be called on `PageOneComponent` but will not be called on any child components that `PageOneComponent` may render.