diff --git a/src/platform/platform.ts b/src/platform/platform.ts index 77d78b346c..dbde094e3f 100644 --- a/src/platform/platform.ts +++ b/src/platform/platform.ts @@ -807,9 +807,9 @@ export class Platform { if (this.hasFocusedTextInput() === false) { this._isPortrait = null; } - this.resize.emit(); + this.zone.run(() => this.resize.emit()); }, 200); - }, { passive: true, zone: true }); + }, { passive: true, zone: false }); }, 2000); }