diff --git a/tns-core-modules/ui/frame/frame-common.ts b/tns-core-modules/ui/frame/frame-common.ts index b911a8dd4..b24984897 100644 --- a/tns-core-modules/ui/frame/frame-common.ts +++ b/tns-core-modules/ui/frame/frame-common.ts @@ -368,7 +368,11 @@ export class Frame extends CustomLayoutView implements definition.Frame { } get currentEntry(): definition.NavigationEntry { - return this._currentEntry.entry; + if (this._currentEntry) { + return this._currentEntry.entry; + } + + return null; } public _pushInFrameStack() {