Lines Matching refs:Router

4 description: Learn how to migrate a project using React Navigation to Expo Router.
12 Both React Navigation and Expo Router are Expo frameworks for routing and navigation. Expo Router i…
16 Along with all the benefits of React Navigation, Expo Router enables automatic deep linking, [type …
20 …or Expo Router. If you're using these functions to support [shared routes](/router/advanced/shared…
30 - Rename the initial route to `index`. Expo Router considers the route that is opened on launch to …
36 In Expo Router, search parameters can only serializable top-level values such as `number`, `boolean…
56 …onts are loading. This is bad practice and generally unsupported in Expo Router. If you absolutely…
66 Expo Router automatically adds `react-native-gesture-handler` (when installed) and `react-native-sa…
104 /* @info NavigationContainer is managed by Expo Router. */
108 /* @info Delete the linking configuration, this is managed by Expo Router. */
136 **Expo Router:**
182 ### Using Expo Router hooks
184 …een. This pattern is going away in React Navigation, but we never introduced it to the Expo Router.
217 React Navigation and Expo Router both provide Link components. However, Expo's Link component uses …
223 // Expo Router
227 …Props` hook to control the child component. This isn't necessary in Expo Router, instead, use the …
233 In Expo Router, you can either migrate to [shared routes](/router/advanced/shared-routes) or create…
239 …tnavigation.org/docs/screen-tracking/), update it according to the [Expo Router screen tracking gu…
247 …tion.org/docs/navigation-container/) is completely managed in Expo Router. Expo Router provides sy…
283 Unlike React Navigation, Expo Router can reliably represent any route with a string. Use the [`useP…
307 In Expo Router, you can rehydrate your application state from a route string (for example, `/user/e…
320 …cs. Expo Router has special handling for both of these use cases. Assume the navigation is always …
327 Actions are always handled in Expo Router. Use [dynamic routes](/routing/create-pages/#dynamic-rout…
335 …cs/navigation-container/#fallback) prop is automatically handled by Expo Router. Learn more in the…
339 …://reactnavigation.org/docs/navigation-container/#theme) component. Expo Router manages the root c…
364Router does not support [`independent`](https://reactnavigation.org/docs/navigation-container/#ind…
378 If your project has a custom navigator, you can rewrite this or port it to Expo Router.
439 ### Use Expo Router's Splash Screen wrapper
441 Expo Router wraps `expo-splash-screen` and adds special handling to ensure it's hidden after the na…
458 // Expo Router
464 …se the `initialRouteName` property of the linking configuration. In Expo Router, use [layout setti…
468 Expo Router can automatically generate [statically typed routes](/router/reference/typed-routes), t…