react-navigation.github.io
react-navigation.github.io copied to clipboard
Home of the documentation and other miscellanea
hi, i am try to using linking concept of navigation as mention in documentation i make this code  dependencies "@react-navigation/native": "^6.0.8", "@react-navigation/native-stack": "^6.5.0", "@react-navigation/stack": "^6.2.1", "@react-navigation/bottom-tabs": "^6.3.1", **expected behavior**...
Hello React Navigation team, I hope this message finds you well. I am writing to request the creation of a sandbox environment for React Navigation. As someone who frequently uses...
When using the `useNavigation` hook from `@react-navigation/native` in TypeScript, optional arguments are not being correctly inferred and produce a type error. ## Expected Behavior: Optional arguments should be correctly inferred...
As the title suggests, when the hyperlink is followed to see the Snack of the nested navigator example instead of the app loading an alert saying "We were unable to...
regarding: https://reactnavigation.org/docs/typescript/#type-checking-the-navigator it says: > Specifying undefined means that the route doesn't have params. A union type with undefined (e.g. SomeType | undefined) means that params are optional. here it...
Seems that the snack referenced in [this section](https://reactnavigation.org/docs/elements/#headerbackground) is missing the `expo-blur` dependency... I'm happy to help to fix this but I can't see where these dependencies are set... i.e:...
I am using material top tabs to render three screens that have a list of Touchable Opacity components. When I swipe between screens, it conflicts with Touchable opacity and that...
deep link setup for android: https://reactnavigation.org/docs/deep-linking/#setup-on-android says/shows: > Add android:autoVerify="true" to your entry and this will be the resulst: ``` ``` here they are placed on the first intent-filter. however,...
In the section [Serializing and parsing params](https://reactnavigation.org/docs/configuring-links/#serializing-and-parsing-params) the example tries to achieve the following state ```js const state = { routes: [ { name: 'Chat', params: { at: 1589842744264 },...
We should document how and why you might use navigate with a key in order to avoid pushing a route multiple times if you use the push action. We might...