import { Dimensions } from 'react-native'; const { width } = Dimensions.get('window'); const isSmallScreen = width <= 375; console.log(width); export default isSmallScreen;