We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7a1f1b2 commit e802206Copy full SHA for e802206
tns-core-modules/ui/core/view-base/view-base.ts
@@ -715,9 +715,12 @@ export abstract class ViewBase extends Observable implements ViewBaseDefinition
715
716
this.disposeNativeView();
717
718
- this.nativeView = null;
719
- this._androidView = null;
720
- this._iosView = null;
+ if (isAndroid) {
+ this.nativeView = null;
+ this._androidView = null;
721
+ }
722
+
723
+ // this._iosView = null;
724
725
this._context = null;
726
traceNotifyEvent(this, "_onContextChanged");
0 commit comments