You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am using UserInactivity component on the screen and timer does not stop while navigating on other screens, it works on other screens too. Can you guide me how to stop UserInactivity component on other screens?
The text was updated successfully, but these errors were encountered:
You have to catch when the screen main component are unfocused. Not unmounted, because it never be really unmounted in React Native actually. Then you should have to return something without the UserInactivity tag, some component different to the original component involve in the UserInactivity tag. Or the same component but without the UserInactivity tag. This is going to discard the timer in the new View of the React Navigation. Don't forget to catch the focus state of the View again and return the original Component involve in the UserInactivity tag to start the timer again.
import React,{useState, useCallback} from 'react';
import {useFocusEffect} from '@react-navigation/native';
import UserInactivity from 'react-native-user-inactivity';
...
Hi,
I am using UserInactivity component on the screen and timer does not stop while navigating on other screens, it works on other screens too. Can you guide me how to stop UserInactivity component on other screens?
The text was updated successfully, but these errors were encountered: