Maksim
Maksim

Reputation: 2466

react-native event like componentDidEnter?

Is there any event like componentDidEnter? Only event componentDidMount works, but I need to call function also when page changed using this.props.navigator.pop();

Thank you.

Upvotes: 1

Views: 133

Answers (2)

Maksim
Maksim

Reputation: 2466

componentDidEnter doesn't work, but componentWillUpdate, componentDidUpdate and componentWillReceiveProps works fine. I used componentWillReceiveProps in my project.

Upvotes: 1

martpie
martpie

Reputation: 6080

Combining componentWillUnmount, componentWillMount and componentDidMount should help you to achieve what you are trying to do. (see Component Specs and Lifecycle)

Upvotes: 1

Related Questions