| /expo/packages/expo-router/build/fork/ |
| H A D | NavigationContainer.native.js | 54 const isLinkingEnabled = linking ? linking.enabled !== false : false; 55 if (linking?.config) { 56 (0, core_1.validatePathConfig)(linking.config); 65 ...linking, 72 get linking() { getter 74 ...linking, 76 prefixes: linking?.prefixes ?? [], 77 getStateFromPath: linking?.getStateFromPath ?? core_1.getStateFromPath, 78 getPathFromState: linking?.getPathFromState ?? core_1.getPathFromState, 79 … getActionFromState: linking?.getActionFromState ?? core_1.getActionFromState, [all …]
|
| H A D | NavigationContainer.native.js.map | 1 …linking?: LinkingOptions<ParamList>;\n fallback?: React.ReactNode;\n documentTitle?: DocumentTit…
|
| H A D | NavigationContainer.native.d.ts | 6 linking?: LinkingOptions<ParamList>; 13 linking?: LinkingOptions<RootParamList> | undefined;
|
| /expo/docs/pages/versions/unversioned/sdk/ |
| H A D | linking.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-linking' 5 packageName: 'expo-linking' 12 …linking` provides utilities for your app to interact with other installed apps using deep links. I… 14 …re comprehensive explanation of how to use `expo-linking`, refer to the [Linking guide](/guides/li… 25 import * as Linking from 'expo-linking'; 28 <APISection packageName="expo-linking" apiName="Linking" />
|
| /expo/docs/pages/versions/v46.0.0/sdk/ |
| H A D | linking.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-46/packages/expo-linking' 5 packageName: 'expo-linking' 12 …linking` provides utilities for your app to interact with other installed apps using deep links. I… 14 …omprehensive explanation of how to use `expo-linking`, refer to the [Linking guide](../../../guide… 25 import * as Linking from 'expo-linking'; 28 <APISection packageName="expo-linking" apiName="Linking" />
|
| /expo/docs/pages/versions/v47.0.0/sdk/ |
| H A D | linking.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-linking' 5 packageName: 'expo-linking' 12 …linking` provides utilities for your app to interact with other installed apps using deep links. I… 14 …re comprehensive explanation of how to use `expo-linking`, refer to the [Linking guide](/guides/li… 25 import * as Linking from 'expo-linking'; 28 <APISection packageName="expo-linking" apiName="Linking" />
|
| /expo/docs/pages/versions/v48.0.0/sdk/ |
| H A D | linking.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-linking' 5 packageName: 'expo-linking' 12 …linking` provides utilities for your app to interact with other installed apps using deep links. I… 14 …re comprehensive explanation of how to use `expo-linking`, refer to the [Linking guide](/guides/li… 25 import * as Linking from 'expo-linking'; 28 <APISection packageName="expo-linking" apiName="Linking" />
|
| /expo/docs/pages/versions/v49.0.0/sdk/ |
| H A D | linking.mdx | 4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-49/packages/expo-linking' 5 packageName: 'expo-linking' 12 …linking` provides utilities for your app to interact with other installed apps using deep links. I… 14 …re comprehensive explanation of how to use `expo-linking`, refer to the [Linking guide](/guides/li… 25 import * as Linking from 'expo-linking'; 28 <APISection packageName="expo-linking" apiName="Linking" />
|
| /expo/packages/expo-router/src/fork/ |
| H A D | NavigationContainer.native.tsx | 32 linking?: LinkingOptions<ParamList>; 46 …* @param props.linking Options for deep linking. Deep link handling is enabled when this prop is p… 55 linking, 63 const isLinkingEnabled = linking ? linking.enabled !== false : false; 65 if (linking?.config) { 66 validatePathConfig(linking.config); 78 ...linking, 86 get linking() { 88 ...linking, 90 prefixes: linking?.prefixes ?? [], [all …]
|
| /expo/apps/native-component-list/src/navigation/ |
| H A D | RootNavigation.tsx | 3 import * as Linking from 'expo-linking'; 15 export const linking: LinkingOptions<object> = { 22 apis: MainNavigators.apis.linking, 23 components: MainNavigators.components.linking, 38 <NavigationContainer linking={linking} fallback={<Text>Loading…</Text>}>
|
| H A D | MainNavigators.tsx | 15 linking: PathConfig<{ ExpoApis?: string; ExpoComponents?: string }>; 24 linking: { 42 linking: {
|
| /expo/apps/test-suite/ |
| H A D | App.js | 7 const linking = { variable 17 <NavigationContainer linking={linking}> field
|
| /expo/packages/expo-linking/ |
| H A D | README.md | 1 # expo-linking 7 …ain branch](https://github.com/expo/expo/blob/main/docs/pages/versions/unversioned/sdk/linking.mdx) 8 - [Documentation for the latest stable release](https://docs.expo.dev/versions/latest/sdk/linking/) 12 …for the latest stable release](https://docs.expo.dev/versions/latest/sdk/linking/). If you follow … 21 npx expo install expo-linking
|
| /expo/packages/expo-router/build/global-state/ |
| H A D | router-store.js | 22 linking; field in RouterStore 45 this.linking = undefined; 57 this.linking = (0, getLinkingConfig_1.getLinkingConfig)(this.routeNode); 59 this.linking.getInitialURL = () => initialLocation.toString(); 60 …this.initialState = this.linking.getStateFromPath?.(initialLocation.pathname + initialLocation.sea… 126 ...this.linking?.config,
|
| H A D | routing.js | 76 if (!this.linking) { 85 let base = this.linking.getPathFromState?.(rootState, { 94 const state = this.linking.getStateFromPath(href, this.linking.config);
|
| /expo/apps/bare-expo/ |
| H A D | MainNavigator.tsx | 4 import * as Linking from 'expo-linking'; 21 linking: any; 55 nclLinking.apis = NativeComponentList.apis.linking; 56 nclLinking.components = NativeComponentList.components.linking; 62 const linking: LinkingOptions<object> = { 119 <NavigationContainer linking={linking}>
|
| /expo/docs/pages/guides/ |
| H A D | linking.mdx | 15 The [`expo-linking`][expo-linking] API universally abstracts over native linking APIs (like `window… 18 import * as Linking from 'expo-linking'; 23 {/* TODO(EvanBacon): Maybe we should move `<A />` to `expo-linking`. */} 143 import * as Linking from 'expo-linking'; 236 import * as Linking from 'expo-linking'; 251 Learn more in the [API documentation](/versions/latest/sdk/linking). 298 title="Deep linking" 300 href="/guides/deep-linking" 305 description="Use linking to implement web-based authentication." 311 description="Setup React Navigation linking for in-app routing." [all …]
|
| /expo/packages/expo-router/build/link/ |
| H A D | linking.d.ts.map | 1 {"version":3,"file":"linking.d.ts","sourceRoot":"","sources":["../../src/link/linking.ts"],"names":…
|
| /expo/packages/expo-router/src/global-state/ |
| H A D | routing.ts | 63 if (!this.linking) { 76 this.linking.getPathFromState?.(rootState, { 87 const state = this.linking.getStateFromPath!(href, this.linking.config);
|
| H A D | router-store.tsx | 28 linking: ExpoLinkingOptions | undefined; 60 this.linking = undefined; 77 this.linking = getLinkingConfig(this.routeNode!); 80 this.linking.getInitialURL = () => initialLocation.toString(); 81 this.initialState = this.linking.getStateFromPath?.( 83 this.linking.config 161 ...this.linking?.config,
|
| /expo/packages/expo-auth-session/ |
| H A D | README.md | 26 … Native deep linking in your application. For more information, check out [React Native documentat… 28 #### Add support for React Native deep linking 48 …droid documentation](https://developer.android.com/training/app-links/deep-linking#adding-filters).
|
| /expo/packages/expo-router/build/testing-library/ |
| H A D | mocks.js.map | 1 …};\n\njest.mock('expo-linking', () => {\n const module: typeof import('expo-linking') = {\n ..…
|
| /expo/packages/expo-router/src/__tests__/ |
| H A D | globalState.test.node.tsx | 14 linking: undefined, 67 linking: expect.objectContaining({
|
| /expo/docs/pages/router/advanced/ |
| H A D | router-settings.mdx | 15 When deep linking to a route, you may want to provide a user with a "back" button. The `initialRout… 32 Now deep linking directly to `/other` or reloading the page will continue to show the back arrow.
|
| /expo/docs/pages/router/reference/ |
| H A D | sitemap.mdx | 18 …Chrome to test deep linking on physical devices. Learn more about [testing deep links](https://rea…
|