UNPKG

manuthecoder-react-native-spotlight-tour

Version:

React Native library to implement a highly customizable app tour feature with an awesome spotlight effect

10 lines (7 loc) 269 B
import { responsiveHeight, responsiveWidth } from "react-native-responsive-dimensions"; export function vw(percentage: number): number { return responsiveWidth(percentage); } export function vh(percentage: number): number { return responsiveHeight(percentage); }