Access to native web browsers (chrome and safarai)

Hello everybody! :slightly_smiling:

Im getting started with my first ionic project and iā€™m wondering if with ionic its possible to fire a native browser (to show a web in my case).

I made a little app with android, but in order to simplify and reduce the cost of develop in android and iOS, i decide to code de app on ionic framework and thats its necessary to me.

Thnks!! :wink:

there is the inapp-browser cordova plugin --> you can open the browser in your app

or if you want to simply open chrome or mobile safari with addressbar and so on use:

window.open('WEBSITEURL', '_system');
1 Like

Thanks @bengtler! Completly works :slightly_smiling:

1 Like