Files
react-navigation/packages/compat/src
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
..
2019-09-16 16:04:31 +02:00
2020-02-19 23:04:14 +01:00
2020-02-19 23:04:14 +01:00