main
1import 'dart:io';
2
3/// Whether bluetooth is supported on this platform by this app
4final isPlatformSupportedBluetooth = Platform.isAndroid || Platform.isIOS || Platform.isMacOS || Platform.isLinux;
5
6/// Whether we are running in a test environment
7final isTestingEnvironment = Platform.environment['FLUTTER_TEST'] == 'true';
8
9/// Whether the value graph should be shown as home screen in landscape mode
10final showValueGraphAsHomeScreenInLandscapeMode = isTestingEnvironment || !Platform.isLinux;