I looked around for quite a while but couldn't find anything that worked.
I am refering to this issue: here - embeding a website inside your ionic application. Unfortunately the suggested solution using iframe works not for all pages since many websites have blocked iframe as you can see in the picture below.
I already tried the InAppBrowser Plugin which works well. But it opens a full screen and hides my app navigation. You have to close the screen to get back to the application. Thats not really what I want. My InAppBrowserOptions are:
options : InAppBrowserOptions = {
location : 'yes',
hidden : 'no',
clearcache : 'yes',
clearsessioncache : 'yes',
zoom : 'yes',
hardwareback : 'yes',
mediaPlaybackRequiresUserAction : 'no',
shouldPauseOnSuspend : 'no',
closebuttoncaption : 'Close',
disallowoverscroll : 'no',
toolbar : 'yes',
enableViewportScale : 'no',
allowInlineMediaPlayback : 'no',
presentationstyle : 'pagesheet',
fullscreen : 'yes',
hideurlbar : 'yes',
hidenavigationbuttons : 'yes',
};
Is there a better way to embed the website inside the application?