Published
- 1 min read
navigation focus listener
The solution for this is noted below
navigation focus listener
Solution
useEffect(() => {
const unsubscribe = navigation.addListener('focus', () => {
//////////////////////////////
////// Call any action////////
//////////////////////////////
})
return unsubscribe
}, [navigation])
Try other methods by searching on the site. That is if this doesn’t work