react-navigation
react-navigation copied to clipboard
Routing and navigation for your React Native apps
### Current behavior I have a Stack navigator with screenOptions presentation: "transparentModal". Inside it I have another Stack navigator, I expect it to have a transparent background, but it does...
### Current behavior Reanimated 2.3.x reintroduces support for Chrome Debugger, so the logic for choosing to use the legacy implementation is now incorrect. Further, the logic for checking whether to...
Please provide enough information so that others can review your pull request. **Motivation** Explain the **motivation** for making this change. What existing problem does the pull request solve? If this...
### Current behavior Hello, I did a serie of tests with the same link. I sent a notification on my phone and 7 times out of 20, the app opened...
### Current behavior on android content appears behind header  ```ts import React from 'react'; import {View, Text} from 'react-native'; export const Content: React.FC = () => { return (...
### Current behavior App crashes with [this change](https://github.com/react-navigation/react-navigation/commit/ba868fcc87035958dd3250e81691f1f3098be033?diff=split#diff-e53e4593bbd84031aa52494ad48e5b1d9f95f0c4ba669c41f92c1885e4875ba2R88) introduced in v6.3.1, [multiple people facing the same issue](https://github.com/software-mansion/react-native-reanimated/issues/3049#issue-1159595875), the workaround is to be fixed at 6.3.0 atm Honestly I see no...
**Motivation** This PR adds the missing `hideKeyboardOnSwipe` prop from react-native-screens to react-navigation/native-stack. This is prop is essential if we need to hide the keyboard on the swipe gesture and it...
### Current behavior I have this config: ```js const config = { screens: { Tabs: { screens: { Sortiment: { path: "sortiment", screens: { Category: { path: "k/:category?", exact: true...
### Current behavior Currently several of the docs even suggest conditionally rendering Navigators or Screens within Navigators. However, if you do this, Web URLS will be lost, and not resolve...
**Motivation** Having a Route Parameters system is good and `navigator.navigate` can type check just fine, but the screen itself is not guaranteed to match the correct route params signature. These...