meshcore-open/lib/utils/browser_detection_web.dart
2026-02-22 10:47:51 -08:00

10 lines
272 B
Dart

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