meshcore-open/lib/utils/browser_detection_web.dart
2026-02-23 03:43:49 -08:00

9 lines
239 B
Dart

import 'package:web/web.dart' as web;
class BrowserDetection {
static bool get isChrome {
final userAgent = web.window.navigator.userAgent.toLowerCase();
final isChrome = userAgent.contains('chrome');
return isChrome;
}
}