http://iosres.com/ https://material.io/tools/devices/ http://screensiz.es/ https://www.sebastien-gabriel.com/designers-guide-to-dpi/ https://medium.com/@pnowelldesign/pixel-density-demystified-a4db63ba2922 POINTS in Apple, DIP (Density Independent Pixels) in Android RN: unidad siempre es DIP, no se pone la unidad import React from "react"; import PropTypes from "prop-types"; import { AppState, View } from "react-native"; class StatusHandler extends React.PureComponent { static propTypes = { setStatus: PropTypes.func.isRequired }; componentDidMount() { AppState.addEventListener("change", this.props.setStatus.bind(this)); this.props.setStatus(AppState.currentState); } render() { return