shellphone.app/app/constants/Layout.ts

13 lines
222 B
TypeScript
Raw Normal View History

2021-06-01 21:13:51 +00:00
import { Dimensions } from "react-native";
const width = Dimensions.get("window").width;
const height = Dimensions.get("window").height;
export default {
window: {
width,
height,
},
isSmallDevice: width < 375,
};