react-native-responsiveness
Version:
Make React Native views responsive for all devices with the use of 2 simple methods.
18 lines (12 loc) • 410 B
Flow
// @flow
import type { Component } from "react";
declare export function widthPercentageToDP(
widthPercent: string | number
): number;
declare export function heightPercentageToDP(
heightPercent: string | number
): number;
declare export function listenOrientationChange(
screenClassComponent: Component<any, any>
): void;
declare export function removeOrientationListener(): void;