react-native-style-utilities
Version:
useStyle, useFlatStyle and findStyle helper functions for the React Native StyleSheet API
8 lines (7 loc) • 352 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.useFlatStyle = void 0;
const react_1 = require("react");
const react_native_1 = require("react-native");
const useFlatStyle = (styleFactory, deps) => react_1.useMemo(() => react_native_1.StyleSheet.flatten(styleFactory()), deps);
exports.useFlatStyle = useFlatStyle;