react-native-full-responsive
Version:
Create a fully responsive React Native app for all supported platforms
12 lines • 436 B
JavaScript
import { useResponsiveWidth } from './useResponsiveWidth';
import { useResponsiveHeight } from './useResponsiveHeight';
const useResponsiveDim = (widthPercentage, heightPercentage) => {
const width = useResponsiveWidth(widthPercentage);
const height = useResponsiveHeight(heightPercentage);
return {
width,
height
};
};
export { useResponsiveDim, useResponsiveDim as useRD };
//# sourceMappingURL=useResponsiveDim.js.map