Untitled

Anonymous
plain_text
12/11/2024 10:08 AM
424 B
13
Indexable
import { useWindowDimensions } from 'react-native';
import { useSafeAreaInsets } from 'react-native-safe-area-context';

const useLayout = () => {
  const { top, bottom } = useSafeAreaInsets();
  const { width, height } = useWindowDimensions();

  return { width, height, top, bottom };
};

export default useLayout;
Editor is loading...
Leave a Comment