mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 12:09:43 +00:00
6dc4eafff4
Hide scanner for desktop
11 lines
No EOL
259 B
Dart
11 lines
No EOL
259 B
Dart
import 'dart:io';
|
|
|
|
class DeviceInfo {
|
|
DeviceInfo._();
|
|
|
|
static DeviceInfo get instance => DeviceInfo._();
|
|
|
|
bool get isMobile => Platform.isAndroid || Platform.isIOS;
|
|
|
|
bool get isDesktop => Platform.isMacOS || Platform.isWindows || Platform.isLinux;
|
|
} |