To navigate a user to a URL you can use the following code:
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:
Fliplet.Navigate.url({ url: 'https://fliplet.com', inAppBrowser: false });
Was this article helpful?
YesNo