react-navigation / redux-helpers

Redux middleware and utils for React Navigation
Other
296 stars 43 forks source link

How to addListener with react-navigation-redux-helpers? #84

Closed hoangpham95 closed 5 years ago

hoangpham95 commented 5 years ago

Looking at this tutorial, how can I add listener like this?

this.props.navigation.addListener('willBlur', payload =>
      BackHandler.removeEventListener('hardwareBackPress', this.onBackButtonPressAndroid)
);
Ashoat commented 5 years ago

Not sure what you’re asking. That code snippet will remove the BackHandler event listener on blur. Not sure if that’s what you want. For an example of how to implement back handler behavior please check the end of this project’s README.