我正在使用react-native-navigation,并且我想跟踪自定义Drawer Navigator的位置x,所以我这样调用onLayout事件:
<View styles={style.container} onLayout={(event: Object) => {
console.log(event.nativeEvent.layout.x);
}}>
(...)
</View>
但是onLayout仅触发一次,如果我移动Drawer Navigator,则为事件。还有其他方法可以追踪其位置吗?