Hello there,
I'm a newcomer to Ionic and I'm hoping for some guidance. My goal is to convert my website into an app, and after doing some research, it seems that utilizing the in-app-browser is the most suitable approach.
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);
} }
However, when I test this code, the website doesn't show up as intended. Additionally, changing from '_system' to '_self loads the webpage but removes all the custom features of my app.
I believe I am overlooking something crucial in the above code snippet that would allow the webpage to be displayed within the app while still preserving my app's design and functionality.
Check out this example image of what I'm aiming for
Edit: I have included the image above to provide a clearer illustration of my objective. The blank white space should ideally showcase the webpage content, but currently, it remains empty.