Files
react-navigation/packages/stack
Satyajit Sahoo 162410843c feat: add ability add listeners with listeners prop
This adds ability to listen to events from the component where the navigator is defined, even if the screen is not rendered.

```js
<Tabs.Screen
  name="Chat"
  component={Chat}
  options={{ title: 'Chat' }}
  listeners={{
    tabPress: e => console.log('Tab press', e.target),
  }}
/>
```

Closes #6756
2020-02-26 13:02:22 +01:00
..
2020-02-24 14:45:00 +01:00
2020-02-01 02:43:58 +01:00
2020-02-24 14:45:00 +01:00

@react-navigation/stack

Stack navigator for React Navigation.

Installation instructions and documentation can be found on the React Navigation website.