Home
last modified time | relevance | path

Searched refs:setParams (Results 1 – 25 of 26) sorted by relevance

12

/expo/packages/expo-router/src/
H A Dimperative-api.ts9 setParams: (params) => store.setParams(params),
H A Dhooks.ts27 setParams: store.setParams,
H A Dtypes.ts28 setParams: (params?: Record<string, string>) => void;
/expo/packages/expo-router/build/
H A Dimperative-api.js10 setParams: (params) => router_store_1.store.setParams(params),
H A Dhooks.js27 setParams: router_store_1.store.setParams, property
H A Dimperative-api.js.map1 …tore.goBack(),\n canGoBack: () => store.canGoBack(),\n setParams: (params) => store.setParams(pa…
H A Dtypes.d.ts24 setParams: (params?: Record<string, string>) => void;
H A Dtypes.js.map1 …ack: () => boolean;\n /** Update the current route query params. */\n setParams: (params?: Recor…
H A Dhooks.js.map1 … back: store.goBack,\n replace: store.replace,\n setParams: store.setParams,\n …
/expo/packages/expo-router/build/global-state/
H A Drouting.js26 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 Drouting.d.ts7 export declare function setParams(this: RouterStore, params?: Record<string, string | number>): any;
H A Drouter-store.d.ts32 setParams: any;
H A Drouter-store.js38 setParams = routing_1.setParams.bind(this); field in RouterStore
H A Drouter-store.js.map1setParams } from './routing';\nimport { getSortedRoutes } from './sort-routes';\nimport { UrlObjec…
H A Drouting.js.map1setParams(this: RouterStore, params: Record<string, string | number> = {}) {\n assertIsReady(thi…
/expo/packages/expo-router/src/global-state/
H A Drouting.ts43 export function setParams(this: RouterStore, params: Record<string, string | number> = {}) { function
45 return (this.navigationRef?.current?.setParams as any)(params);
H A Drouter-store.tsx8 import { canGoBack, goBack, linkTo, push, replace, setParams } from './routing';
48 setParams = setParams.bind(this);
/expo/packages/expo-router/build/views/
H A DNavigator.d.ts138 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 Dbasic.ts184 setParams: <T = ''>(params?: T extends '' ? Record<string, string> : InputRouteParams<T>) => void;
/expo/docs/pages/router/advanced/
H A Dstack.mdx87 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 Dsearch-parameters.mdx163 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 DSearchScreen.tsx94 onChangeQuery={(q) => navigation.setParams({ q })}
/expo/docs/pages/routing/
H A Dnavigating-pages.mdx80 - **setParams**: `(params: Record<string, string>) => void` Update the query params for the current…
/expo/apps/native-component-list/src/screens/MediaLibrary/
H A DMediaLibraryScreen.tsx109 const clearAlbumSelection = () => navigation.setParams({ album: undefined });
/expo/packages/expo-dev-launcher/ios/
H A Dmain.jsbundle448 …GATE',payload:t}},e.reset=function(t){return{type:'RESET',payload:t}},e.setParams=function(t){retu…

12