native-base
Version:
Essential cross-platform UI components for React Native
17 lines (16 loc) • 577 B
JavaScript
// import { useWindowDimensions } from 'react-native';
// import { isResponsiveAnyProp } from '../theme/tools';
// @ts-ignore eslint-disable-next-line
export function useHasResponsiveProps(props) {
if (props) {//
}
return false; // const windowDimensions = useWindowDimensions();
// if (!windowDimensions.width || !windowDimensions.height) {
// const responsivePropsExists = isResponsiveAnyProp(props);
// if (responsivePropsExists) {
// return true;
// }
// }
// return false;
}
//# sourceMappingURL=useHasResponsiveProps.js.map