UNPKG

react-native-sortables

Version:

Powerful Sortable Components for Flexible Content Reordering in React Native

7 lines (5 loc) 192 B
import { Dimensions } from 'react-native'; export default function useScreenDiagonal() { const { height, width } = Dimensions.get('screen'); return Math.sqrt(width ** 2 + height ** 2); }