meshcore-open/lib/utils/browser_detection_web.dart

11 lines
272 B
Dart
Raw Normal View History

2026-02-22 07:40:40 -08:00
// ignore: avoid_web_libraries_in_flutter
import 'dart:html' as html;
class BrowserDetection {
static bool get isChrome {
final userAgent = html.window.navigator.userAgent.toLowerCase();
2026-02-22 10:47:51 -08:00
final isChrome = userAgent.contains('chrome');
return isChrome;
2026-02-22 07:40:40 -08:00
}
}