Добавьте следующий код в componentDidMount()
componentDidMount() {
this.subs = this.props.navigation.addListener("didFocus", () =>
//Your logic, this listener will call when you open the class every time
);
}
И не забудьте удалить слушателя в componentWillUnmount()
,
componentWillUnmount() {
this.subs.remove();
}