I’ve been testing my application in FireFox, but now that I am trying to demo it on my device via the Ionic View app none of my content is displaying. Instead, I just get the header bar from my HomePage and a blank side menu. The content is a ion-slide, an ion-list, and and ion-side-menu. Are any of these not compatible with the app?
I’ve tried updating cordova and searching everywhere online, however every instance of this problem seemed to be in versions 1 or 2, and specifically dealt with using the ionic run/emulate command. Has anyone seen this problem before or know where I can find a resource to resolve it?? Let me know if you’d like me to post some code, but I’m not sure which part of my code would be relevant.
My system version is:
Ionic 3.4.0, Cordova 7.0.1, Angular 4.1.3, Typescript 2.3.3, NodeJS 8.1.0
<UPDATE>
I’ve pretty much determined that no typescript gets processed when using the Ionic View app, and the only content displayed is the pure HTML from the app.html file (hence why the ion-menu is there but not the items inside of it, since it populates with data from a JSON file). Currently looking for a solution as to why. Anyone know if the parameters in the app.component.ts constructor could have any impact on this? Mine are:
constructor(public platform: Platform, private http: Http, private translate: TranslateService, private config: Config) {
Other than that I’m comparing my implementation to the super template implementation since that works fine on the Ionic View app. This means it’s not an environment issue but I’m guessing I’m missing something core to the bootstrap or something like that.
</UPDATE>