Home
last modified time | relevance | path

Searched refs:linking (Results 1 – 25 of 147) sorted by relevance

123456

/expo/packages/expo-router/build/fork/
H A DNavigationContainer.native.js54 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 DNavigationContainer.native.js.map1linking?: LinkingOptions<ParamList>;\n fallback?: React.ReactNode;\n documentTitle?: DocumentTit…
H A DNavigationContainer.native.d.ts6 linking?: LinkingOptions<ParamList>;
13 linking?: LinkingOptions<RootParamList> | undefined;
/expo/docs/pages/versions/unversioned/sdk/
H A Dlinking.mdx4 sourceCodeUrl: 'https://github.com/expo/expo/tree/main/packages/expo-linking'
5 packageName: 'expo-linking'
12linking` 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 Dlinking.mdx4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-46/packages/expo-linking'
5 packageName: 'expo-linking'
12linking` 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 Dlinking.mdx4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-47/packages/expo-linking'
5 packageName: 'expo-linking'
12linking` 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 Dlinking.mdx4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-48/packages/expo-linking'
5 packageName: 'expo-linking'
12linking` 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 Dlinking.mdx4 sourceCodeUrl: 'https://github.com/expo/expo/tree/sdk-49/packages/expo-linking'
5 packageName: 'expo-linking'
12linking` 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 DNavigationContainer.native.tsx32 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 DRootNavigation.tsx3 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 DMainNavigators.tsx15 linking: PathConfig<{ ExpoApis?: string; ExpoComponents?: string }>;
24 linking: {
42 linking: {
/expo/apps/test-suite/
H A DApp.js7 const linking = { variable
17 <NavigationContainer linking={linking}> field
/expo/packages/expo-linking/
H A DREADME.md1 # 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 Drouter-store.js22 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 Drouting.js76 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 DMainNavigator.tsx4 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 Dlinking.mdx15 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 Dlinking.d.ts.map1 {"version":3,"file":"linking.d.ts","sourceRoot":"","sources":["../../src/link/linking.ts"],"names":…
/expo/packages/expo-router/src/global-state/
H A Drouting.ts63 if (!this.linking) {
76 this.linking.getPathFromState?.(rootState, {
87 const state = this.linking.getStateFromPath!(href, this.linking.config);
H A Drouter-store.tsx28 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 DREADME.md26 … 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 Dmocks.js.map1 …};\n\njest.mock('expo-linking', () => {\n const module: typeof import('expo-linking') = {\n ..…
/expo/packages/expo-router/src/__tests__/
H A DglobalState.test.node.tsx14 linking: undefined,
67 linking: expect.objectContaining({
/expo/docs/pages/router/advanced/
H A Drouter-settings.mdx15 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 Dsitemap.mdx18 …Chrome to test deep linking on physical devices. Learn more about [testing deep links](https://rea…

123456