I want to render a remote web page inside my Ionic2 controller without using the internalWebBrowser.
Researching online I found two methods:
FIRST METHOD
template
<ion-header>
<ion-navbar>
<button ion-button menuToggle>
<ion-icon name="menu"></ion-icon>
</button>
<ion-title>Panorama</ion-title>
</ion-navbar>
</ion-header>
<ion-content overflow-scroll="true">
<div>
<div [innerHTML]="myVal"></div>
</div>
</ion-content>
controller:
import { Component } from …
Hi,
If Ionic is just HTML and JS, does this mean it should be possible to store your core views and scripts on a remote server? This would allow us to provide quick updates to our app without the entire app store deployment process.
I assume their would be an index.html bundled with the app still that would point to remotely located scripts/views
All I can find on the forum after a few minutes, don’t wanna read all of Apples ToC I also think this could cause you issues with Ionic Native plugins; as in you simply can’t use them, but I’m not sure.