标签: react-navigation
我在我的应用中使用react-navigation。 如果我从screen A导航到Screen B,如果转换完成,我该如何获得一些反馈。
screen A
Screen B
答案 0 :(得分:2)
import { InteractionManager } from 'react-native然后
import { InteractionManager } from 'react-native
componentDidMount(){ InteractionManager.runAfterInteractions(() => { //your code }) }