UNPKG

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) 293 B
import { responsiveScreenHeight, responsiveScreenWidth } from "react-native-responsive-dimensions"; export function vw(percentage: number): number { return responsiveScreenWidth(percentage); } export function vh(percentage: number): number { return responsiveScreenHeight(percentage); }