rn-custom-style-sheet
Version:
React Native component to select a specific value from a range of values.
12 lines • 380 B
JavaScript
import { OrientationEnum } from '../../Reducer';
import { useThemeContext } from '../UseThemeContext';
export default function useCurrentOrientation() {
const {
state: {
orientation,
isSupportedOrientation
}
} = useThemeContext();
return isSupportedOrientation ? orientation : OrientationEnum.Portrait;
}
//# sourceMappingURL=UseCurrentOrientation.js.map