Hi all,
I’ve created a page that contains an iframe:
BrowserPage
<ion-header>
<!-- empty -->
</ion-header>
<ion-content>
<iframe *ngIf="externalLink" [src]="externalLink" width="100%" height="100%" frameborder="0" ></iframe>
</ion-content>
If I link this page to one of the links of the tabs-bar I can see correctly the remote site inside the frame of the App.
And I can still see the tabs-bar.
But if I call the BrowserPage from another page with this command:
this.navCtrl.push(BrowserPage, {externalUrl: wsUrl});
I can see the remote site, but I can’t see the tabs-bar.
Which is the difference between the two calls?
How can I force the tabs-bar to be visible?
I’m using Ionic CLI 3.6.0.
Thank you.
Claudio