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.
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.
import { InteractionManager } from 'react-native and then
componentDidMount(){
InteractionManager.runAfterInteractions(() => {
//your code
})
}