FurryChat/lib/utils/platform_infos.dart

19 lines
530 B
Dart
Raw Normal View History

2020-09-26 18:27:15 +00:00
import 'dart:io';
import 'package:flutter/foundation.dart';
abstract class PlatformInfos {
static bool get isWeb => kIsWeb;
2020-10-04 14:11:18 +00:00
2020-09-26 18:27:15 +00:00
static bool get isMobile => !kIsWeb && (Platform.isAndroid || Platform.isIOS);
2020-10-04 14:11:18 +00:00
/// For desktops which don't support ChachedNetworkImage yet
static bool get isBetaDesktop =>
!kIsWeb && (Platform.isWindows || Platform.isLinux);
2020-10-28 07:05:10 +00:00
static bool get isDesktop =>
!kIsWeb && (Platform.isLinux || Platform.isWindows || Platform.isMacOS);
2020-09-26 18:27:15 +00:00
static bool get usesTouchscreen => !isMobile;
}