mirror of
https://github.com/wanghongenpin/proxypin.git
synced 2026-03-21 05:39:47 +08:00
14 lines
285 B
Dart
14 lines
285 B
Dart
import 'dart:io';
|
|
|
|
class Platforms {
|
|
/// 判断是否是桌面端
|
|
static bool isDesktop() {
|
|
return Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
|
}
|
|
|
|
/// 判断是否是移动端
|
|
static bool isMobile() {
|
|
return Platform.isAndroid || Platform.isIOS;
|
|
}
|
|
}
|