You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
You can further optimize performance and pre-render pages [by providing the urls that the user is likely to open](https://developer.chrome.com/docs/android/custom-tabs/best-practices/#pre-render-content).
252
+
253
+
```javascript
254
+
// Do not call this every time the component render
255
+
useEffect(() => {
256
+
InAppBrowser.mayLaunchUrl("Url user has high chance to open", ["Other urls that user might open ordered by priority"]);
257
+
}, []);
258
+
```
259
+
233
260
### Authentication Flow using Deep Linking
234
261
235
262
In order to redirect back to your application from a web browser, you must specify a unique URI to your app. To do this,
0 commit comments