Home
last modified time | relevance | path

Searched refs:getIsTabletOnly (Results 1 – 5 of 5) sorted by relevance

/expo/packages/@expo/config-plugins/build/ios/
H A DDeviceFamily.js8 exports.getIsTabletOnly = getIsTabletOnly;
39 function getIsTabletOnly(config) { function
46 const isTabletOnly = getIsTabletOnly(config);
H A DDeviceFamily.d.ts6 export declare function getIsTabletOnly(config: Pick<ExpoConfig, 'ios'>): boolean;
H A DDeviceFamily.js.map1getIsTabletOnly","_config$ios2","isTabletOnly","getDeviceFamilies","_config$ios3","addWarningIOS",…
/expo/packages/@expo/config-plugins/src/ios/__tests__/
H A DDeviceFamily-test.ts10 getIsTabletOnly,
35 expect(getIsTabletOnly({ ios: {} })).toBe(false);
39 expect(getIsTabletOnly({ ios: { isTabletOnly: true } })).toBe(true);
/expo/packages/@expo/config-plugins/src/ios/
H A DDeviceFamily.ts21 export function getIsTabletOnly(config: Pick<ExpoConfig, 'ios'>): boolean { function
27 const isTabletOnly = getIsTabletOnly(config);