UNPKG

react-native-curved-bottom-bar

Version:

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

8 lines (5 loc) 200 B
import { useWindowDimensions } from 'react-native'; export function useDeviceOrientation() { const { width, height } = useWindowDimensions(); return width < height ? 'PORTRAIT' : 'LANDSCAPE'; }