React Navigation re-render previous page when going back

Aidan Doherty picture Aidan Doherty · Aug 23, 2017 · Viewed 12k times · Source

Whats the best way to refresh the previous page when going back using Stack Navigator. No life cycle hooks seems to be triggered on the page i am returning to. I'm just using the basic example and this.props.navigation.goBack()

Answer

Mahdi Bashirpour picture Mahdi Bashirpour · Aug 30, 2018

You can use addListener for this

componentDidMount() {

    this.props.navigation.addListener(
      'didFocus',
      payload => {
        this.forceUpdate();
      }
    );

}