Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

React Navigation - How to detect if transition is complete

I use react-navigation in my app. If I navigate from screen A to Screen B, how can I got some feedback, if the transition is completed.

like image 814
drtapha Avatar asked Sep 14 '25 21:09

drtapha


1 Answers

import { InteractionManager } from 'react-native and then

componentDidMount(){
   InteractionManager.runAfterInteractions(() => {
       //your code
   })
}
like image 135
Alexander Vitanov Avatar answered Sep 17 '25 20:09

Alexander Vitanov