React Native

ReactNative 이전 컴포넌트로 돌아왔을때 체크

Machine_웅 2020. 2. 4. 16:27
728x90
반응형
componentDidMount() {
    this.props.navigation.addListener("didFocus", () => {
        // user has navigated to this screen
    });

    this.props.navigation.addListener("didBlur", () => {
        // user has navigated away from this screen
    });
}

 

728x90
반응형