LighthouseApp/lib/utils/platform_utils.dart
speakeloudest 75d4c48e41
Some checks failed
Build Windows / build (push) Has been cancelled
feat: 源码提交
2025-10-19 23:30:54 -07:00

7 lines
149 B
Dart
Executable File

import 'dart:io';
abstract class PlatformUtils {
static bool get isDesktop =>
Platform.isLinux || Platform.isWindows || Platform.isMacOS;
}