Márton Kiss 1558794e93 igen
2023-05-26 21:25:00 +02:00

7 lines
182 B
Dart

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