UNPKG

react-native-curved-bottom-bar

Version:

A high performance, beautiful and fully customizable curved bottom navigation bar for React Native.

9 lines 256 B
import { useWindowDimensions } from 'react-native'; export function useDeviceOrientation() { const { width, height } = useWindowDimensions(); return width < height ? 'PORTRAIT' : 'LANDSCAPE'; } //# sourceMappingURL=useDeviceOrientation.js.map