| /expo/packages/expo-web-browser/src/__tests__/ |
| H A D | WebBrowser-test.native.ts | 12 ExpoWebBrowser.openBrowserAsync.mockImplementation(async () => fakeReturnValue); 25 const openResult = await WebBrowser.openBrowserAsync(pageUrl); 27 expect(ExpoWebBrowser.openBrowserAsync).toHaveBeenCalledWith(pageUrl, {}); 37 ExpoWebBrowser.openBrowserAsync.mockRejectedValueOnce(new Error('No matching activity!')); 38 ExpoWebBrowser.openBrowserAsync.mockRejectedValueOnce(new Error('Current activity not found!')); 39 ExpoWebBrowser.openBrowserAsync.mockRejectedValueOnce(new Error('No package manager!'));
|
| /expo/packages/@expo/cli/src/register/__tests__/ |
| H A D | registerAsync.test.ts | 2 import { openBrowserAsync } from '../../utils/open'; 25 expect(openBrowserAsync).not.toBeCalled(); 38 expect(openBrowserAsync).not.toBeCalled(); 46 expect(openBrowserAsync).toBeCalledWith('https://expo.dev/signup');
|
| /expo/packages/@expo/cli/src/register/ |
| H A D | registerAsync.ts | 5 import { openBrowserAsync } from '../utils/open'; 24 const opened = await openBrowserAsync(registrationUrl);
|
| /expo/apps/native-component-list/src/screens/WebBrowser/ |
| H A D | OpenBrowserAsyncDemo.tsx | 10 name: 'openBrowserAsync', 145 { name: 'Open', action: WebBrowser.openBrowserAsync }, 149 const openBrowserPromise = WebBrowser.openBrowserAsync(url, openOptions); 157 WebBrowser.openBrowserAsync(url, openOptions); 158 return WebBrowser.openBrowserAsync(url, openOptions);
|
| /expo/packages/expo-web-browser/build/ |
| H A D | WebBrowser.js | 118 export async function openBrowserAsync(url, browserParams = {}) { function 119 if (!ExponentWebBrowser.openBrowserAsync) { 133 result = await ExponentWebBrowser.openBrowserAsync(url, _processOptions(browserParams)); 317 ({ type } = await openBrowserAsync(startUrl, browserParams)); 348 openBrowserAsync(startUrl, browserParams),
|
| H A D | ExpoWebBrowser.web.d.ts | 4 openBrowserAsync(url: string, browserParams?: WebBrowserOpenOptions): Promise<WebBrowserResult>; constant
|
| H A D | WebBrowser.d.ts | 63 export declare function openBrowserAsync(url: string, browserParams?: WebBrowserOpenOptions): Promi…
|
| /expo/packages/expo-web-browser/src/ |
| H A D | WebBrowser.ts | 164 export async function openBrowserAsync( function 168 if (!ExponentWebBrowser.openBrowserAsync) { 187 result = await ExponentWebBrowser.openBrowserAsync(url, _processOptions(browserParams)); 393 ({ type } = await openBrowserAsync(startUrl, browserParams)); 433 openBrowserAsync(startUrl, browserParams),
|
| /expo/packages/expo-web-browser/android/src/test/java/expo/modules/webbrowser/ |
| H A D | WebBrowserModuleTest.kt | 28 fun openBrowserAsync(url: String, options: OpenBrowserOptions): Bundle in openBrowserAsync() method 59 val result = module.openBrowserAsync("http://expo.dev", OpenBrowserOptions()) in openBrowserAsync() 77 module.openBrowserAsync("http://expo.dev", OpenBrowserOptions()) in openBrowserAsync() 95 module.openBrowserAsync("http://expo.io", OpenBrowserOptions()) in openBrowserAsync() 112 module.openBrowserAsync( in openBrowserAsync() 138 module.openBrowserAsync( in openBrowserAsync() 167 module.openBrowserAsync( in openBrowserAsync() 195 module.openBrowserAsync( in openBrowserAsync()
|
| /expo/packages/@expo/cli/src/api/user/ |
| H A D | expoSsoLauncher.ts | 2 import openBrowserAsync from 'better-opn'; 99 openBrowserAsync(authorizeUrl);
|
| /expo/packages/@expo/cli/src/utils/ |
| H A D | open.ts | 9 export async function openBrowserAsync( function
|
| /expo/packages/@expo/cli/src/start/interface/ |
| H A D | interactiveActions.ts | 8 import { openBrowserAsync } from '../../utils/open'; 142 await openBrowserAsync(url);
|
| /expo/apps/test-suite/tests/ |
| H A D | Linking.js | 62 await WebBrowser.openBrowserAsync(testUrl); 93 await WebBrowser.openBrowserAsync(`${redirectingBackendUrl}${Linking.createURL('++')}`);
|
| /expo/templates/expo-template-tabs/components/ |
| H A D | ExternalLink.tsx | 23 WebBrowser.openBrowserAsync(props.href as string);
|
| /expo/packages/@expo/cli/src/start/server/__tests__/ |
| H A D | BundlerDevServer-test.ts | 3 import { openBrowserAsync } from '../../../utils/open'; 137 expect(openBrowserAsync).toBeCalledWith('http://exp.tunnel.dev/foobar'); 143 expect(openBrowserAsync).toBeCalledWith('http://localhost:3000');
|
| /expo/home/screens/ProjectScreen/ |
| H A D | EmptySection.tsx | 21 WebBrowser.openBrowserAsync('https://docs.expo.dev/workflow/publishing/');
|
| /expo/home/screens/BranchDetailsScreen/ |
| H A D | EmptySection.tsx | 21 WebBrowser.openBrowserAsync(
|
| /expo/home/screens/SettingsScreen/ |
| H A D | TrackingSection.tsx | 48 WebBrowser.openBrowserAsync('https://expo.io/privacy-explained');
|
| /expo/packages/@expo/cli/src/start/server/ |
| H A D | BundlerDevServer.ts | 13 import { openBrowserAsync } from '../../utils/open'; 394 await openBrowserAsync(url!);
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | webbrowser.mdx | 14 …t want to open a webpage (such as your app privacy policy), then use `WebBrowser.openBrowserAsync`. 38 let result = await WebBrowser.openBrowserAsync('https://expo.dev');
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 …t want to open a webpage (such as your app privacy policy), then use `WebBrowser.openBrowserAsync`. 38 let result = await WebBrowser.openBrowserAsync('https://expo.dev');
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 …t want to open a webpage (such as your app privacy policy), then use `WebBrowser.openBrowserAsync`. 38 let result = await WebBrowser.openBrowserAsync('https://expo.dev');
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 …t want to open a webpage (such as your app privacy policy), then use `WebBrowser.openBrowserAsync`. 38 let result = await WebBrowser.openBrowserAsync('https://expo.dev');
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | webbrowser.mdx | 14 …t want to open a webpage (such as your app privacy policy), then use `WebBrowser.openBrowserAsync`. 38 let result = await WebBrowser.openBrowserAsync('https://expo.dev');
|
| /expo/packages/expo-web-browser/ |
| H A D | README.md | 10 …ust want to open a webpage (such as your app privacy policy), then use WebBrowser.openBrowserAsync.
|