react-native-spotlight-tour
Version:
React Native library to implement a highly customizable app tour feature with an awesome spotlight effect
8 lines • 301 B
JavaScript
import { responsiveScreenHeight, responsiveScreenWidth } from "react-native-responsive-dimensions";
export function vw(percentage) {
return responsiveScreenWidth(percentage);
}
export function vh(percentage) {
return responsiveScreenHeight(percentage);
}
//# sourceMappingURL=responsive.js.map