Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Is there a way to know that user got back to the app? #44

Open
ronilitman opened this issue Mar 11, 2019 · 1 comment
Open

Is there a way to know that user got back to the app? #44

ronilitman opened this issue Mar 11, 2019 · 1 comment

Comments

@ronilitman
Copy link

I need to know if the user clicked on Back or X and got back to the app. Is there a way?

@akanksha-agarwal93
Copy link

akanksha-agarwal93 commented Jan 8, 2021

You can use AppState event Handler to know if your application has come back in foreground.
For Functional component, register AppState.addEventListener('change', handleAppStateChange); in useEffect call
and same thing in componentDidMount for class component.

this is my handleAppStateChange:
const handleAppStateChange = async (nextAppState) => {
console.log('AppState Changed: ', nextAppState);
if (nextAppState === 'active') {
setIsActive(true);
}
if(nextAppState === 'background'){
setIsActive(false);
}
}

Do not forget to unsubscribe for the event.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants