mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2024-11-19 18:00:17 +01:00
8 lines
289 B
TypeScript
8 lines
289 B
TypeScript
import { getDeviceType, isTablet as checkIsTablet } from 'react-native-device-info';
|
|
|
|
const isTablet: boolean = checkIsTablet();
|
|
const isDesktop: boolean = getDeviceType() === 'Desktop';
|
|
const isHandset: boolean = getDeviceType() === 'Handset';
|
|
|
|
export { isDesktop, isHandset, isTablet };
|