Untitled
unknown
plain_text
a year ago
316 B
6
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