Open links
Open URLs, deep links, and native screens from your app.
Open a link
Open a URL in an in-app web view, an external app, or a native screen. Set view to choose the destination. URLs are normalized by default (missing https:// is added, urlParams applied); pass useRawLink: true to skip that.
| Property | Type | Description |
|---|---|---|
link | string · required | The URL to open. |
view | string | Where to open it: website, another app, or another screen. |
transition | string | The screen transition animation. |
useRawLink | boolean | Open the link exactly as given, skipping URL normalization. |
urlParams | UrlParam[] | Query parameters to append to the URL. Each is { key, value }. |