1.0.0 • Published 3 years ago
react-native-fast-orientation v1.0.0
React Native Orientation
In React Native applications, monitor changes in device orientation and programmatically set the preferred orientation for each screen. works on iOS and Android.
Installation
$ npm install react-native-fast-orientation —saveUsage
Use the Orientation module in your codebase if you want to use the react-native-fast-orientation package :
$ import UseOrientation from 'react-native-fast-orientation'const App = () => {
  const orientation = UseOrientation();
  return (
   // ...
      <View
        style={{
          height: orientation.isPortrait ? 200 : 100,
          width: orientation.isPortrait ? 200 : 100,
          backgroundColor: 'black',
        }}
      />
   // ...
  );
};
export default App;1.0.0
3 years ago