Good day,
I'm quite new to Ionic, just to get that out of the way. I am trying to turn my website into an app, i did some research and found that the in-app-browser is the best way to do it.
constructor(public navCtrl: NavController, private inAppBrowser: InAppBrowser){}ngOnInit() {
const options:InAppBrowserOptions =
{
zoom :'no',
location : 'no',
toolbar : 'no'
}
const browser = this.inAppBrowser.create("skyvertstudios.com/yaadi", '_system',options);
} }
Now when i run this code the website isn't shown. When I also change the '_system to '_self it loads the webpage but i lose everything that i created within the app.
I know am missing something in the above lines but i am not sure what am missing that will allow the page to be displayed within the app while also keep my tabs and overall app look.
Edit: Added the image above to better explain what is it am trying to do. In the blank white space the webpage should be loaded but it's not being loaded