I have my one blog which i want to convert into ionic app.
I use InAppBrowser plugin but the problem is when i press the back button it will come to my default ionic home page.
i follow the below steps :
ionic start myblog
ionic platform add android
ionic cordova plugin add cordova-plugin-inappbrowser
npm install --save @ionic-native/in-app-browser
and then added provider in app.module and in home.ts write the following.
import { InAppBrowser } from '@ionic-native/in-app-browser';
constructor(private iab: InAppBrowser) { }
...
const browser = this.iab.create('https://ionicframework.com/','_self','location=no');
browser.show();
Also location=no is not working.
Like android ionic provide the webview ??
can anyone help me out ?
any help is appreciated. :)