react-navigation.github.io icon indicating copy to clipboard operation
react-navigation.github.io copied to clipboard

Incorrect sample code for Nested Links

Open BenAllenUK opened this issue 5 years ago • 1 comments

In the documentation (https://reactnavigation.org/docs/configuring-links) there is a code sample for nesting links. It is incorrect and requires an alteration.

const config = {
  screens: {
    Home: {
      Chat: 'feed/:sort',
    },
    Profile: 'user',
  },
};

Should read:

const config = {
  screens: {
    Home: {
      screens: {
          Chat: 'feed/:sort',
      }
    },
    Profile: 'user',
  },
};

BenAllenUK avatar Nov 11 '20 18:11 BenAllenUK

This is fixed now, u can close this issue

saideepesh000 avatar Sep 17 '21 18:09 saideepesh000