student-legacy/refilc/lib/utils/platform.dart

7 lines
176 B
Dart

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