UNPKG

react-native-style-utilities

Version:

useStyle, useFlatStyle and findStyle helper functions for the React Native StyleSheet API

4 lines (3 loc) 310 B
import { DependencyList } from "react"; import { ImageStyle, StyleProp, TextStyle, ViewStyle } from "react-native"; export declare const useStyle: <TStyle extends ViewStyle | TextStyle | ImageStyle, TOutput extends StyleProp<TStyle>>(styleFactory: () => TOutput, deps?: DependencyList | undefined) => TOutput;