2024-03-22 13:16:37 +08:00
|
|
|
import 'dart:io';
|
|
|
|
|
|
|
|
final isAndroid_ = Platform.isAndroid;
|
|
|
|
final isIOS_ = Platform.isIOS;
|
|
|
|
final isWindows_ = Platform.isWindows;
|
2024-03-23 10:27:17 +08:00
|
|
|
final isMacOS_ = Platform.isMacOS;
|
|
|
|
final isLinux_ = Platform.isLinux;
|
2024-03-22 13:16:37 +08:00
|
|
|
final isWeb_ = false;
|
2024-03-28 11:38:11 +08:00
|
|
|
final isWebDesktop_ = false;
|
2024-03-22 13:16:37 +08:00
|
|
|
|
|
|
|
final isDesktop_ = Platform.isWindows || Platform.isMacOS || Platform.isLinux;
|
2024-03-28 11:38:11 +08:00
|
|
|
|
|
|
|
String get screenInfo_ => '';
|
2024-08-26 12:13:11 +08:00
|
|
|
|
|
|
|
final isWebOnWindows_ = false;
|
|
|
|
final isWebOnLinux_ = false;
|
|
|
|
final isWebOnMacOS_ = false;
|