0
我使用onLayout來檢測屏幕方向,它在我的根視圖中工作正常,但是當我在抽屜內部實現時,它不工作,爲什麼會出現這種情況?React原生檢測屏幕旋轉
代碼:
import Drawer from 'react-native-drawer'
...
onLayout(e) {
console.log('onLayout');
}
<Drawer onLayout={this.onLayout}
當朝向改變它沒有記錄任何東西!