react-native-full-responsive
Version:
Create a fully responsive React Native app for all supported platforms
19 lines (17 loc) • 372 B
text/typescript
import { BASE_SIZES, MappedDeviceType } from './types';
export const DefaultBases: MappedDeviceType = {
'xs': BASE_SIZES.xs,
'sm': BASE_SIZES.sm,
'md': BASE_SIZES.md,
'lg': BASE_SIZES.lg,
'xl': BASE_SIZES.xl,
'2xl': BASE_SIZES?.['2xl'],
};
export const DefaultThresholds = {
'xs': 320,
'sm': 576,
'md': 768,
'lg': 992,
'xl': 1200,
'2xl': 1440,
};