mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-01 01:29:02 +08:00
8018920a64
Signed-off-by: fufesou <shuanglongchen@yeah.net>
11 lines
300 B
Dart
11 lines
300 B
Dart
import 'dart:io';
|
|
|
|
final isAndroid_ = Platform.isAndroid;
|
|
final isIOS_ = Platform.isIOS;
|
|
final isWindows_ = Platform.isWindows;
|
|
final isMacOS_ = Platform.isMacOS;
|
|
final isLinux_ = Platform.isLinux;
|
|
final isWeb_ = false;
|
|
|
|
final isDesktop_ = Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|