UNPKG

@gluestack-ui/utils

Version:

Utility functions and hooks for gluestack-ui

14 lines 310 B
import { useState } from 'react'; export const useLayout = () => { const [layout, setLayout] = useState({ width: 0, height: 0, }); return { onLayout: (e) => { setLayout(e.nativeEvent.layout); }, layout, }; }; //# sourceMappingURL=index.js.map