|
1
|
import 'dart:io'; |
|
2
|
|
|
3
|
class DeviceInfo { |
|
4
|
DeviceInfo._(); |
|
5
|
|
|
6
|
static DeviceInfo get instance => DeviceInfo._(); |
|
7
|
|
|
8
|
bool get isMobile => Platform.isAndroid || Platform.isIOS; |
|
9
|
|
|
10
|
bool get isDesktop => Platform.isMacOS || Platform.isWindows || Platform.isLinux; |
|
11
|
} |