React Navigation - 如何检测转换是否完成

drt*_*pha 3 react-navigation

我在我的应用程序中使用反应导航。如果我从 导航screen AScreen B,如果转换完成,我如何获得一些反馈。

Ale*_*nov 5

import { InteractionManager } from 'react-native进而

componentDidMount(){
   InteractionManager.runAfterInteractions(() => {
       //your code
   })
}
Run Code Online (Sandbox Code Playgroud)