FurryChat/lib/utils/platform_infos.dart

10 lines
259 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;
static bool get isMobile => !kIsWeb && (Platform.isAndroid || Platform.isIOS);
static bool get usesTouchscreen => !isMobile;
}