mirror of
https://github.com/rustdesk/rustdesk.git
synced 2024-12-12 18:29:10 +08:00
4b4fd94f3e
Signed-off-by: fufesou <linlong1266@gmail.com>
18 lines
450 B
Dart
18 lines
450 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 isWebDesktop_ = false;
|
|
|
|
final isDesktop_ = Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
|
|
|
String get screenInfo_ => '';
|
|
|
|
final isWebOnWindows_ = false;
|
|
final isWebOnLinux_ = false;
|
|
final isWebOnMacOS_ = false;
|