| /expo/packages/expo-router/src/ |
| H A D | imperative-api.ts | 9 setParams: (params) => store.setParams(params),
|
| H A D | hooks.ts | 27 setParams: store.setParams,
|
| H A D | types.ts | 28 setParams: (params?: Record<string, string>) => void;
|
| /expo/packages/expo-router/build/ |
| H A D | imperative-api.js | 10 setParams: (params) => router_store_1.store.setParams(params),
|
| H A D | hooks.js | 27 setParams: router_store_1.store.setParams, property
|
| H A D | imperative-api.js.map | 1 …tore.goBack(),\n canGoBack: () => store.canGoBack(),\n setParams: (params) => store.setParams(pa…
|
| H A D | types.d.ts | 24 setParams: (params?: Record<string, string>) => void;
|
| H A D | types.js.map | 1 …ack: () => boolean;\n /** Update the current route query params. */\n setParams: (params?: Recor…
|
| H A D | hooks.js.map | 1 … back: store.goBack,\n replace: store.replace,\n setParams: store.setParams,\n …
|
| /expo/packages/expo-router/build/global-state/ |
| H A D | routing.js | 26 exports.linkTo = exports.setParams = exports.canGoBack = exports.goBack = exports.replace = exports… 61 function setParams(params = {}) { function 63 return (this.navigationRef?.current?.setParams)(params); 65 exports.setParams = setParams;
|
| H A D | routing.d.ts | 7 export declare function setParams(this: RouterStore, params?: Record<string, string | number>): any;
|
| H A D | router-store.d.ts | 32 setParams: any;
|
| H A D | router-store.js | 38 setParams = routing_1.setParams.bind(this); field in RouterStore
|
| H A D | router-store.js.map | 1 …setParams } from './routing';\nimport { getSortedRoutes } from './sort-routes';\nimport { UrlObjec…
|
| H A D | routing.js.map | 1 … setParams(this: RouterStore, params: Record<string, string | number> = {}) {\n assertIsReady(thi…
|
| /expo/packages/expo-router/src/global-state/ |
| H A D | routing.ts | 43 export function setParams(this: RouterStore, params: Record<string, string | number> = {}) { function 45 return (this.navigationRef?.current?.setParams as any)(params);
|
| H A D | router-store.tsx | 8 import { canGoBack, goBack, linkTo, push, replace, setParams } from './routing'; 48 setParams = setParams.bind(this);
|
| /expo/packages/expo-router/build/views/ |
| H A D | Navigator.d.ts | 138 setParams<RouteName_2 extends string>(params: Partial<object | undefined>): void; 252 setParams(params: Partial<object | undefined>): void;
|
| /expo/packages/@expo/cli/src/start/server/type-generation/__typetests__/fixtures/ |
| H A D | basic.ts | 184 setParams: <T = ''>(params?: T extends '' ? Record<string, string> : InputRouteParams<T>) => void;
|
| /expo/docs/pages/router/advanced/ |
| H A D | stack.mdx | 87 You can use the imperative API `router.setParams()` function to configure the route dynamically. 106 router.setParams({ name: 'Updated' });
|
| /expo/docs/pages/router/reference/ |
| H A D | search-parameters.mdx | 163 Search parameters can be updated using the **router.setParams** function from the imperative API. T… 180 router.setParams({ q: search });
|
| /expo/apps/native-component-list/src/screens/ |
| H A D | SearchScreen.tsx | 94 onChangeQuery={(q) => navigation.setParams({ q })}
|
| /expo/docs/pages/routing/ |
| H A D | navigating-pages.mdx | 80 - **setParams**: `(params: Record<string, string>) => void` Update the query params for the current…
|
| /expo/apps/native-component-list/src/screens/MediaLibrary/ |
| H A D | MediaLibraryScreen.tsx | 109 const clearAlbumSelection = () => navigation.setParams({ album: undefined });
|
| /expo/packages/expo-dev-launcher/ios/ |
| H A D | main.jsbundle | 448 …GATE',payload:t}},e.reset=function(t){return{type:'RESET',payload:t}},e.setParams=function(t){retu…
|