rfcs icon indicating copy to clipboard operation
rfcs copied to clipboard

RFCs for changes to React Navigation

Results 34 rfcs issues
Sort by recently updated
recently updated
newest added

As per https://github.com/react-navigation/rfcs/issues/14 the only good reason that I can see for integrating React Navigation state into Redux is to take advantage of the Redux developer tooling. We can create...

I propose each navigation view like StackView, TabView should declare needed input properties directly as Props: `goBack` (for StackView), `navigate`, `tabBarComponent` (for TabView) `state`, `descriptors` and remove generic `dispatch` (use...

A navigation structure as described below works beautifully but isn't documented anywhere. It allows you to navigate from nested screens to other nested screens easily, without having to pass navigation...

- https://github.com/react-navigation/react-navigation/issues/4490#issuecomment-405774241 - https://github.com/react-navigation/react-navigation/issues/4490#issuecomment-405778593

Please take into account the justification in https://github.com/react-navigation/rfcs/blob/master/text/0005-shallow-navigation-options.md when discussing this - https://github.com/react-navigation/react-navigation/issues/4120

A react-navigation user mentioned that they use stack navigator to show some content on top of the app when the user backgrounds it in order to obscure the content and...

We have a main screen with a tab navigator, and a pulldown sheet that also has a tab navigator. The navigators are peers/siblings in the top-level App.js. ![image](https://user-images.githubusercontent.com/1550766/57119294-d5cd6e00-6d1d-11e9-9490-304699727964.png) In this...

I've noticed that people have had a hard time grasping how nesting navigators works in React Navigation, and part of that might be due to the relatively flat appearance of...

How should deep links work when the user is not yet authenticated? Some discussion here: https://stackoverflow.com/questions/54350991/react-navigation-deep-linking-with-authentication

This is a very common pattern in Android apps. @lintonye made a heroic effort in https://github.com/react-navigation/react-navigation/pull/941 to implement this, but it's out of date and to land new significant features...