mirror of
https://github.com/rustdesk/rustdesk.git
synced 2025-05-11 10:26:19 +02:00
Fix. Platform is MacOS and is Linux (#7485)
Signed-off-by: fufesou <shuanglongchen@yeah.net>
This commit is contained in:
parent
dcb7e389eb
commit
8018920a64
2 changed files with 3 additions and 3 deletions
|
@ -3,8 +3,8 @@ import 'dart:io';
|
|||
final isAndroid_ = Platform.isAndroid;
|
||||
final isIOS_ = Platform.isIOS;
|
||||
final isWindows_ = Platform.isWindows;
|
||||
final isMacOS_ = Platform.isWindows;
|
||||
final isLinux_ = Platform.isWindows;
|
||||
final isMacOS_ = Platform.isMacOS;
|
||||
final isLinux_ = Platform.isLinux;
|
||||
final isWeb_ = false;
|
||||
|
||||
final isDesktop_ = Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue