Open a website URL

Take the user to a website URL

To navigate a user to a URL you can use the following code:

JavaScript

Fliplet.Navigate.url('https://fliplet.com');

When used in a mobile app, the above will open the URL using the in-app browser. If this is not desired you can use the users default mobile browser by setting the inAppBrowser key to false. See below:

JavaScript

Fliplet.Navigate.url({
  url: 'https://fliplet.com',
  inAppBrowser: false
});