Slide 7
Slide 7 text
SCREEN ORIENTATION
https://www.npmjs.com/package/react-native-orientation
Orientation.getInitialOrientation(); // PORTRAIT, LANDSCAPE, etc...
Orientation.addOrientationListener((orientation) => {
// orientation = PORTRAIT, LANDSCAPE, etc...
});
DeviceEventEmitter.addListener('namedOrientationDidChange', (orientation) => {
// orientation.rotationDegrees
// orientation.isLandscape
});
React Native Core (android only)