react-navigation.github.io
react-navigation.github.io copied to clipboard
Home of the documentation and other miscellanea
Hello, We are Tomaho(er) (an enterprise software company) use React Navigation. # READ ME PLEASE! ### TL;DR: Make sure to add your changes to versioned docs Thanks for opening a...
update pop function document
First real PR 😜
### Add App Link to bare RN manual Android Setup I just config Deep Links as doc said on our project using this doc and [Configuring Links](https://reactnavigation.org/docs/configuring-links/) doc. Android and...
I have created a custom header for Drawer Navigator. I have used `DrawerHeaderProps` for its prop type, but this does not give strict type-checking behavior like what we get when...
`Complete Error: ERROR TypeError: Cannot read property 'installCoreFunctions' of undefined, js engine: hermes ERROR Invariant Violation: Module AppRegistry is not a registered callable module (calling runApplication). A frequent cause of...
https://github.com/react-navigation/react-navigation.github.io/blob/bfc09a18884e06304f9e79176ef5e9f3d2c0cb8c/versioned_docs/version-6.x/deep-linking.md?plain=1#L164-L179 The data fields gets merged: ```xml ``` becomes: ```xml ``` And with that, only `mychat://www.example.com` will open the app. Source https://stackoverflow.com/a/27321468/5555803 The solution is to use different `intent-filter`s.
In the [Nesting Navigators](https://github.com/react-navigation/react-navigation.github.io/blob/main/versioned_docs/version-6.x/typescript.md#type-checking-screens-and-params-in-nested-navigator) guide, the example given does not work with the stack structure provided in the page (which is not nested to begin with). I believe the author...
the current example is passing a wrong type of argument to the `navigate` method.
env: ```js { "react-native": "0.64.0", "@react-navigation/stack": "^6.0.7", } ``` code: ```js import {createStackNavigator} from '@react-navigation/stack'; const Stack = createStackNavigator(); ``` bug: see the Video https://user-images.githubusercontent.com/33342225/147741916-d909fe9c-1c3e-4bcb-9d8b-0660d727c9d8.mp4 the Page stucked Any solution?...