mirror of
https://github.com/dz0ny/meshcore-sar.git
synced 2026-08-11 16:30:28 +00:00
12 lines
316 B
Dart
12 lines
316 B
Dart
import 'package:flutter/foundation.dart'
|
|
show TargetPlatform, defaultTargetPlatform, kIsWeb;
|
|
|
|
class CompassSupport {
|
|
const CompassSupport._();
|
|
|
|
static bool get isAvailable =>
|
|
!kIsWeb &&
|
|
(defaultTargetPlatform == TargetPlatform.android ||
|
|
defaultTargetPlatform == TargetPlatform.iOS);
|
|
}
|