diff --git a/tns-core-modules/ui/frame/frame.android.ts b/tns-core-modules/ui/frame/frame.android.ts index 8f4c2f51f..d1ca8d7c3 100644 --- a/tns-core-modules/ui/frame/frame.android.ts +++ b/tns-core-modules/ui/frame/frame.android.ts @@ -261,7 +261,10 @@ export class Frame extends FrameBase { } entry.recreated = false; - current.recreated = false; + + if (current) { + current.recreated = false; + } } super.setCurrent(entry, isBack);