mirror of
https://github.com/kodjodevf/mangayomi.git
synced 2026-05-23 11:42:14 +00:00
11 lines
289 B
Dart
11 lines
289 B
Dart
import 'dart:io';
|
|
|
|
/// macOS, Linux or Windows
|
|
final bool isDesktop =
|
|
Platform.isMacOS || Platform.isLinux || Platform.isWindows;
|
|
|
|
/// Android or iOS
|
|
final bool isMobile = Platform.isAndroid || Platform.isIOS;
|
|
|
|
/// macOS or iOS
|
|
final bool isApple = Platform.isMacOS || Platform.isIOS;
|