UNPKG

react-native-responsive-screen

Version:

Make React Native views responsive for all devices with the use of 2 simple methods.

9 lines (7 loc) 393 B
declare module 'react-native-responsive-screen' { import { Component } from 'react'; export function widthPercentageToDP(widthPercent: string | number): number; export function heightPercentageToDP(heightPercent: string | number): number; export function listenOrientationChange(screenClassComponent: Component<any, any>): void; export function removeOrientationListener(): void; }